Forum Moderators: not2easy
=======================================
<div style="background-color:#CCCCCC;">
<ul style="float:left">
<li>erewrwer</li>
<li>werwerwer</li>
</ul>
<ul style="float:left;">
<li>erewrwer</li>
<li>werwerwer</li>
</ul>
</div>
=======================================
The background color does not hold for the div unless you set the div container to a specific height.
Thanks in advance,
Carl
<div style="background-color:#CCCCCC;">
<ul style="float:left">
<li>erewrwer</li>
<li>werwerwer</li>
</ul>
<ul style="float:left;">
<li>erewrwer</li>
<li>werwerwer</li>
</ul>
<br style="clear:both">
</div> Floated elements don't necessarily take up space within the DIV, which means it effectively shrinks to height:0px. The added element above forces the <br> to be below both floated DIVs, and as it itself is not a floated element, the DIV will stretch down around it.