Fluid / Fixed

Two Column Layout

by helpinspireme

HTML

<div id="contentShell">
    <div id="leftRail">Left</div>
</div>

<div id="rightRail">Right</div>

CSS

#contentShell{
float: left;
width: 100%;
}

#leftRail{
margin-right: 200px;
background: #f1f1f1;
}

#rightRail{
float: left;
width: 200px;
margin-left: -200px;
background: #FDE95E;
}