I\'m wondering what the best way to go about doing this is...
I have 3 divs:
div
a div#container with width=100%; tha
div#container
width=100%;
Use floating:
#container{ width:100% } #inner_left{ float:left; max-width:200px; } #inner_right{ float:left; width:100%; }
Edit: have a read a this, it's a nice little guide : quirksmode