vote up 1 vote down star

I could use some help here.

I have a row of floating li's with borders that align properly in Firefox 3.5.4 & IE8.0, but comes up slightly short in Chrome / Safari.

Example: Firefox alt text Example: Chrome alt text

Test website is here

Notice that the right-border on the CONTACT li in Chrome ends up to the left of the picture directly below it - while the Firefox one doesn't.

I'd like to make so both browsers look identical to the Firefox one. Any ideas why they render differently?

Here is the relevant HTML

  <div id="nav">
  <ul class="menu">
 <li class="item1">
  <a href="#"><span>Home</span></a>
 </li>
 <li class="active item66" id="current">
  <a href="#"><span>About Us</span></a>
 </li>
 <li class="item67">
  <a href="#"><span>Commercial</span></a>
 </li>
 <li class="item68">
  <a href="#"><span>Residential</span></a>
 </li>
 <li class="item69">
  <a href="#"><span>Contact</span></a>
 </li>
  </ul>
</div>

And CSS

#nav {height:20px;background:#555;z-index:1;position:relative;width:978px;margin-left:-2px;}
#nav ul {margin:0;}
#nav li {list-style:none;float:left;height:20px;position:relative;width:20%;}
#nav li a {display:block;text-align:center;line-height:20px;color:#fff;font-weight:normal;text-transform:uppercase;font-size:11px;border-right:2px solid #fff;}
#nav li.active a {background:#f68325;}
#nav li a:hover, #nav li:hover a, #nav li.sfHover a {background:#f68325;color:#fff;text-decoration:none;}
#nav li.item1 a {border-left:2px solid #fff;}

What am I missing?

flag
1  
I can tell you why it happens in Chrome & Safari: It's because the both use WebKit as there rendering engine. How to fix this...not sure. – Lucas McCoy Nov 5 at 1:20
1  
You css is messy. You have some divs with widths, some without... some elements in the header push down on your top menu which you solve with overflow:hidden... you have negative margins everywhere. I'm not sure where to start, but you have to clean up your styles or live with the couple pixel difference in my opinion. – George Sisco Nov 5 at 1:30
question is on the nav section - other areas are not finished. – jimg Nov 5 at 5:44

1 Answer

vote up 2 vote down check

Rounding differences between the browsers.

The ul is 978px wide. The li's widths are 20%. 20% of 978 is 195.6.

Firefox is rounding up to 196px and Chrome is rounding down to 195px.

Either make your ul width evenly divisible by 5 or specify a specific pixel width on your li's.

link|flag
Thanks! rounding was the issue. – jimg Nov 5 at 5:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.