Rayzur,
So if I have a nested list like this...
Code:
<ul id="nav">
<li><a href="#">Men's</a></li>
<ul>
<li><a href="#">Suits</a></li>
<li><a href="#">Shirts</a></li>
<li><a href="#">Ties</a></li>
</ul>
</li>
<li><a href="#">Women's</a>
<ul>
<li><a href="#">Dresses</a></li>
<li><a href="#">Coats</a></li>
<li><a href="#">Lingerie</a></li>
</ul>
</li>
</ul>
and because I have float: left; on the out list, but no styling on the inner list then I get somethings that looks like this...
Code:
Men's Women's
Suits Dresses
Shirts Coats
Ties Lingerie
That is because the float puts them in the same line and the "block" effect makes the inner list sit on a new line for each item, right?
Debbie
Bookmarks