I\'m looking for a 3 column css layout, with 1 fixed section at the middle and 2 fluid sidebar around it:
http://www.uploadup.com/di-UEFI.png
middle has 250p
You can try to use inline-blocks for it. They are used rather rarely, but sometimes they are pretty good for layouts.
So, look at this: http://jsfiddle.net/kizu/UUzE9/ — with inline-blocks you can create layouts with any number of fixed and fluid columns. The algorithm:
250px.min-width to the wrapper equal to the sum of all the fluid columns' min-width.white-space: nowrap to the wrapper, so the columns won't jump.If you need support for IE7 and lesser, there are some additional things to know except for common inline-block fix:
white-space: normal to the inner child of a column, or the columns won't stay on one line.overflow: hidden on some wrapper.Enjoy :)