<div id="header">Header</div>
<div id="wrapper">
<div id="left">
<div id="sidebar">Sidebar Text here!</div>
</div>
<div id="right">This is the text of the main part of the page.</div>
<div class="clear"></div>
</div>
<div id="footer">Footer</div>
CSS
#header {
background: #c2c2c2;
height: 50px;
}
#wrapper {
position: relative;
min-height: 500px; /* Just as an example */
width: 500px;
}
#left {
position: absolute;
background: #d7d7d7;
width: 150px;
height: 100%;
}
#right {
position: relative;
width: 350px;
float: right;
}
#sidebar {
background: #0096d7;
width: 150px;
color: #fff;
}
.clear {
clear: both;
}
#footer {
background: #c2c2c2;
height: 500px; /* Just as an example */
}