jam
04-29-2008, 09:56 AM
Hey i have the following CSS on a basic page:
UL{
list-style: none;
}
LI{
float: left;
margin-left:2px;
}
A{
text-decoration: none;
font-family: arial;
font-weight: bold;
font-size: 10px;
border: 1px solid #000;
color: #000;
padding:2px;
}
A:hover{
background-color: #EEE;
}
and then this as the HTML:
<ul>
<li><a href="#">Test Plan</a></li>
<li><a href="#">Story Board</a></li>
<li><a href="#">E-Book</a></li>
<li><a href="#">Evaluation</a></li>
</ul>
It works fine in FF but in IE the bottom of the border is missing (but the left border, the right border and the top border are all there)
Can anyone help?
Cheers,
Jamey
UL{
list-style: none;
}
LI{
float: left;
margin-left:2px;
}
A{
text-decoration: none;
font-family: arial;
font-weight: bold;
font-size: 10px;
border: 1px solid #000;
color: #000;
padding:2px;
}
A:hover{
background-color: #EEE;
}
and then this as the HTML:
<ul>
<li><a href="#">Test Plan</a></li>
<li><a href="#">Story Board</a></li>
<li><a href="#">E-Book</a></li>
<li><a href="#">Evaluation</a></li>
</ul>
It works fine in FF but in IE the bottom of the border is missing (but the left border, the right border and the top border are all there)
Can anyone help?
Cheers,
Jamey