This is pretty simple: http://jsfiddle.net/joplomacedo/ExHzk/ If you don't see the fiddle, here is the html and css.
HTML:
<div class="fixed"></div> <div class="fluid"></div>
CSS
.fixed { float: left; width: 250px; } .fluid { margin-left: 250px; }
Besides
I left the wrapper. This is not very important for demonstration. One question: if you give the wrapper a width of 100%, then what is the default: 0 auto? And do you really need to specify the width?
source share