Div Div DIv
by Jason Rose
HTML
<div id="wrapperz">
<div id="floatitleft">
<p>qqStuff</p>
</div>
<div id="floatitright">
<p>Stuff</p>
</div>
</div>
CSS
body, html {
height: 100%;
width: 100%;
margin:0;
}
#wrapperz {
height:100%;
width:100%;
background: yellow;
}
#floatitleft {
width:300px;
height: 100%;
float:left;
position: fixed;
background: cyan;
}
#floatitright {
margin-left: 320px;
background: red;
}