tags:

views:

44

answers:

1

Take a look :

alt text

Result should be

alt text

+4  A: 
#sidebar { float:left; width:280px; }
#content { margin: 0 0 0 280px; } /* dont float it */

http://jsfiddle.net/auTbG/1/

You will have problems if you have floats inside of #content and you try to clear them, though.

meder
Very clever use of margins, even though doesn't feel entirely natural.
Nikita Rybak