I am working on a 3-column layout with two fixed-width sidebars (left and right) and a fluid center. I have followed A List Apart's Holy Grail article (http://www.alistapart.com/articles/holygrail/) and, although this works fine in most browsers, I am having some problems in Internet Explorer 7+.

The problem with IE 7+ actually doesn't stem from this technique, but rather from the fact that the page is rendering in quirks mode. If I make it render in standards-compliance mode, however, many outdated elements become displaced and would require a complete re-writing.

Given that this article dates a few years, is this the most up-to-date reference on the subject? Or should I be applying a different technique?

Any insight on the best way to do this will be greatly appreciated.

Thanks!

link|improve this question

17% accept rate
feedback

2 Answers

There's really no point in floating the columns.

HTML:

<div id="wrapper">
    <div id="left"></div>
    <div id="center"> Center content</div>
    <div id="right"></div>
</div>

CSS:

#left {
    position:absolute;
    left:0;
    width:50px;
    height:100%;
    background-color:pink;
}

#center {
    height:100%;
    margin: 0 50px;
    background-color:green;
}

#right {
    position:absolute;
    right:0;
    top:0;
    width:50px;
    height:100%;
    background-color:red;
}

body, html, #wrapper {
    width:100%;
    height:100%;
    padding:0;
    margin:0;
}

Demo: http://jsfiddle.net/AlienWebguy/ykAPM/

link|improve this answer
What will your layout do, if the left (or the right) column is higher than content? Where would be your footer? – Webars Jul 26 '11 at 3:32
Above and below the wrapper, in a new wrapper. – AlienWebguy Jul 26 '11 at 3:37
With header and footer: jsfiddle.net/AlienWebguy/ykAPM/1 – AlienWebguy Jul 26 '11 at 3:40
Bad idea :) jsfiddle.net/ykAPM/2 – Webars Jul 26 '11 at 3:44
Easy workaround to an obnoxiously long rail ;) jsfiddle.net/AlienWebguy/ykAPM/3 – AlienWebguy Jul 26 '11 at 4:26
show 1 more comment
feedback

Here is a system that I've been using for years, it handles all cases and supports older browsers.

The simpl.css framework. Scroll to the bottom for the fixed outer columns.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.