css float question
css float question
Out of context: Reply #14
- Started
- Last post
- 24 Responses
- Not_Just_Another0
create two columns within the 750 div, one floated left the other floated right. Don't forget to clear the floats with a div at the end.
<div class="750">
<div class="leftColumn">
<div class="400"></div>
<div class="400"></div>
<div class="400"></div>
</div>
<div class="rightColumn">
<div class="250"></div>
</div>
<div class="clear"></div>
</div>