Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm new to css and I somehow made a horizontal navigation bar. I started from the beginning using css fixed layout. The problem is "top navigation bar" width changes according to browsers or its version. The code is:

#navcontainer {
    background: #fff;
    margin: 0 auto;
    padding: 0 0.6em 0.3em 0.6em;
    font-family: georgia, serif;
}
/* to stretch the container div to contain floated list */
#navcontainer:after {
    content: ".";
    display: block;
    line-height: 1px;
    font-size: 1px;
    clear: both;
}
ul#navlist {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    width: 100%;
    font-size: 0.8em;
}
* html ul#navlist {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    font-size: 0.8em;
    \width: 100%;
    w\idth: 99.80%;
}
ul#navlist li {
    display: block;
    float: left;
    width: 12.82em;
    margin: 0;
    padding: 0;
}
/* For IE6 */
* html ul#navlist li {
    display: block;
    float: left;
    margin: 0;
    padding: 0;
    \width: 12.82em;
    w\idth: 12.82em;
}
ul#navlist li a {
    display: block;
    width: 100%;
    padding: 1em 0;
    border-width: 1px;
    border-color: #99CCFF #ccc #aaab9c #fff;
    border-style: solid;
    font-family: Arial, verdana, tahoma, sans-serif;
    font-weight: bold;
    color: #500;
    text-decoration: none;
    text-align: center;
    background: #99CCFF;
}
#navcontainer>ul#navlist li a {
    width: auto;
}
ul#navlist li#active a {
    background: #99CCFF;
    color: #500;
}
ul#navlist li a:hover, ul#navlist li#active a:hover {
    color: #ff0000;
    background: #D7EBFF;
    border-color: #e9e9e9 #666666 #999999 #ccc;
}

http://jsfiddle.net/cVSum/1/

For exammple Firefox 4.0b9 shows narrow while Firefox 3 is showing wider.

Sincerely

share|improve this question
Try it jsfiddle.net/cVSum/2 – tuze Nov 19 '11 at 12:47
thank for the answer. i tried jsfiddle code but i m still having the problem. – nikel Nov 19 '11 at 20:16
My bad. Seems I forgot to update it. jsfiddle.net/cVSum/3 – tuze Nov 19 '11 at 22:21
no, it's still not working :( – nikel Nov 19 '11 at 22:30
1  
Does the problem just occurs for #navcontainer? – tuze Nov 19 '11 at 22:34
show 4 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.