Two Pane Website - Stretching Vertical Height?

4.4k Views Asked by At

I have this layout:

The topbar is fixed. Then I want to have a sidebar in the left pane, and a right pane with the main content. The panes are different colors, and seperated by a border.

The problem is that sometimes the left pane will be taller and sometimes the right pane will be taller. And so one pane is shorter than the other (the color ends and you see white).

I've tried height:100%; but that only works if the content is shorter than the browser height.

How can I solve this with just CSS?

3

There are 3 best solutions below

1
On

You can use a technique called "faux columns". A good example is Method 3 on this page, or as Wex added in the comment below, this link on A List Apart.

0
On

You could try something like this. The only problem is you need to know a fixed height, if it's possible to have one column be larger than the other and there's no way of know which will be bigger you may need to do some jquery to figure it out.

http://jsfiddle.net/rhoenig/x7NAY/

0
On

my solution for this problem is normallly to nest the columns so the one column controls the other, and then to give the other one a background image that looks as if it is the first continuing:

    <style>
    *{margin:0;padding:0;}
    .main_con{position:relative;margin:0 auto;width:960px;}
    .head_con{position:fixed;top:0;width:960px;height:42px;background:#ff0;}
    .col_con{padding:42px 0 0 0;}
    .left_col{width:360px;margin: 0 15px 0 0;float:left;background: #f60;}
    .right_col{position:relative;float:left;width:960px;background: #f00 url("image that looks like left column continued") repeat-y;}
    .right_col_content{float:left;width:585px;}
    .clr{clear:both;}
    </style>

for the html:

    <div class="main_con">
        <div class="col_con">
            <div class="right_col">
                <div class="left_col">
                        <p>left column content pushes right column down</p>    
                </div>
                    <div class="right_col_content">
                        <p>right column content</p>
                    </div>
            <br class="clr" />
            </div>
        </div>
        <div class="head_con">
            <p>head content</p>
        </div>
    </div>

note: *{} stripping is for sample purposes only and should be replaced with a proper default stripping bit of css.