I want to design 4 column layouts (in addition to the wizards and footers that occupy the entire available page width), so that the right column is fixed at 200px and the other is fluid with a minimum width = 960px and max. -width = 1216px.
Thus, this means that while the browser window is larger than 960 and less than 1216 pixels wide, the layout acts like a liquid layout. When the browser window is larger than 1216, it acts as a fixed layout with a width = 1216px and a page centered in the browser viewing window. If the browser window is reduced to less than 960 pixels, a horizontal scroll bar will appear at the bottom because the minimum width is 960 pixels.
I liked the mesh system of site layout development (example http://960.gs/ ).
The doctrine on my webpage is <!DOCTYPE html> (aka html5 doctype)
The solution should work for IE 6 7 8 9 and FF, Safari, Chrome, Opera.
We hope that this will make it clear what I'm looking for.
What is the solution to this problem based on the above conditions?
I researched Google, but could not find a solution. I am faced with a solution like 3 columns with maximum width, but without a grid and it looks too awkward.
Later I have to add support for a small screen (mobile devices), for which I need to set some column to display: none and stack other columns on top of each other using media queries, but first I need to overcome the problem above.
source share