In IE (7 and 8 are my concern) I have some list items that are more than one line. I'm not sure if this is what causes it but my lists have large gaps between them. It looks horrendous.
Anybody know a work around?
this is my css and html
Anybody know a work around?
this is my css and html
Code:
<ul> <li> <a href="my.html">Testing Link</a> </li> </ul>
Code:
#leftpane ul
{
padding:0px;
margin:0px;
list-style:none;
}
#leftpane ul li
{
padding:0px;
margin:0px;
}
#leftpane ul li a
{
display: block;
font-size: 90%;
}
#leftpane ul li a:hover
{
display: block;
background: #EAEAEA;
}
Comment