Home › Forums › CSS › Replicate table behaviour using CSS? › Re: Replicate table behaviour using CSS?
May 19, 2009 at 3:50 pm
#57802
Member
There are a few things you can do.
on #menu add:
height;auto;
padding:10px 0 15px 0;
then add:
<div style="clear:both"></div>
just before the #menu div closes.
You can completely remove the #navigation div from your css and html, it’s not doing anything there. A lot of people think you need a div there to contain the ul, but the ul itself acts as a div.
That should be a starting point for you.