LI and UL spacing in FF???
Posted: Fri Mar 16, 2007 4:27 pm
You might want to wrap the LI and UL inside a DIV with a green background (or similar to see what I mean):
Using that works as I would expect on IE making each item horizontal and flush against each other...but in FF there are gaps (especially horizontally)...I need each LI to only be one pixel apart, what CSS attribute am I missing? Is there nothing I can do in FF?
Code: Select all
#menu ul, li {
margin: 0px;
padding: 0px;
}
#menu li {
display: inline;
list-style: none;
background-color: yellow;
}
#menu li a {
font-size: 8pt;
}