IE7 navbar margin and padding way off
Posted
by user269959
on Stack Overflow
See other posts from Stack Overflow
or by user269959
Published on 2010-04-02T22:06:14Z
Indexed on
2010/04/02
22:13 UTC
Read the original article
Hit count: 388
ie7
<div id="nav">
<ul>
<li><a href="#"></li>
<li><a href="#"></li>
<li><a href="#"></li>
<li><a href="#"></li>
</ul>
</div>
#nav {
color: #ffffff;
font-size: 12px;
font-weight: bold;
margin-left: 4px;
position: absolute;
top: 230px;
width: 800px;
}
#nav a{
color: #ffffff;
text-decoration: none;
}
#nav li {
display: inline;
margin: -4px;
padding-left: 15px;
padding-right: 15px;
padding-top: 19px;
padding-bottom: 12px;
}
#nav li a {
background-color: transparent;
}
the code above works fine in firefox with the highlighting filling out the entire "tab" of the navbar. however in ie7 it is off center and not filling up the same way. any ideas ?
© Stack Overflow or respective owner