I’m probably overlooking something obvious, but I can’t figure out why on phone landscape version my third column of a four-row column sometimes gets pushed over leaving an empty column under the first. See below. Any help would be appreciated.
Well, reason is that columns has height:auto.
All columns has a pre-sets float: left and when it is going to “stack” one on another column#3 can’t move all the way to the left side because of column#1 size.
So you can ether give columns fixed height, or use option when every column will take 100% of width (which I think is better, because make content more readable on small screens in landscape position)