Navbar以FF 22 Chrome 27为中心,但不是IE 8

时间:2013-08-02 13:38:10

标签: css html navigation

我的导航栏居中并且在Firefox 22和Chrome 27中完美运行但不是IE 8,我讨厌成为那个人,但是给出了什么?如果一切都很好,如果这不是工作相关我不会关心,这不是很好,但我们坚持使用IE浏览器。是否存在某种用于跨浏览器兼容性的资源,或者只是通过火试验?

CSS加价

body
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    margin: 0;
    padding: 0;
}
.container
{
    width: 1004px;
    margin: 0 auto;
    text-align: center;
}
.navigation
{
    text-align: center;
    display: inline-block;
    list-style-type: none;
    text-align: center;
}
.navigation li
{
    float: left;
    width: 150px;
    position: relative;
}
.navigation li a
{
    color: #fff;
    display: block;
    padding: 8px 7px 8px 7px;
    text-decoration: none;
    border-top: 1px solid #F2861D;
    background: #262626;
    text-align: center;
    text-transform: uppercase;
}
.navigation li a:hover
{
    color: #F2861D;
}
.navigation ul
{
    position: absolute;
    left: 0;
    display: none;
    margin: 0 0 0 -1px;
    padding: 0;
    list-style: none;
    border-bottom: 3px solid #F2861D;
}
.navigation ul li
{
    width: 150px;
    border-top: none;
}
.navigation ul a
{
    display: block;
    height: 15px;
    padding: 8px 7px 13px 7px;
    color: #fff;
    text-decoration: none;
    border-top: none;
    border-bottom: 1px dashed #6B6B6B;
}
.navigation ul a:hover
{
    color: #F2861D;
}

HTML标记

<div class="container">
    <div class="navigation">
        MY NAVIGATION
    </div>
</div>

1 个答案:

答案 0 :(得分:0)

在文档顶部使用它:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

或者,如果可能的话:

.container{
   width:100%; //auto
   margin:0 auto;
   text-align:center;
}

相关问题:

Using "margin: 0 auto;" in Internet Explorer 8