Media queries and multiple columns
By far the most common use of media queries is to execute CSS based on viewport width (using min-width or max-width ). Lately there’s been more talk about using media queries based on height as well. Paul talked about using min-height media queries to adjust content appearing above the fold . Owen Gregory wrote his superb 24 Ways article on using viewport proportions and device-aspect-ratio for media queries. Trent has documented his use of horizontal and vertical media queries to bump up the font size for wide and tall viewports . One of the areas where I’ve found height-based media queries to be quite handy is in combination with another CSS3 module: multiple columns . … Read the rest here