0

所以我又买了一套导航药,但我注意到另一个奇怪的问题。我正在使用 right: 5px 在移动视图上将“通知”对齐到我想要的位置,小于 767 像素。在 chrome 中看起来很棒,在 IE 中看起来很棒,但是在 Firefox 中,两个“通知”跨度都位于彼此之上,完全脱离了 LI。知道为什么 Firefox 会有这种奇怪的行为吗?

HTML

  <ul id="contentFirstMenu" class="nav nav-pills">
    <li><a href="#">Item 1 Title</a><span class="notification">4</span></li>
    <li><a href="#">Item 2 Title</a><span class="notification">0</span></li>
    <li><a href="#">Item 3 Title</a></li>
    <li><a href="#">Item 4 Title</a></li>
  </ul>

CSS

#contentContainer {
    padding: 20px 20px 50px 20px;
    margin-left: 100px;
}

#globalHeader {
    margin-bottom: 0;
}

.notesDropDown > li {
    border: 1px solid #CCC;
    width: 132px;
    height: 35px;
    text-align: center;
}

.notesDropDownInner {
    text-align: left;
}

.notesDropDown li:first-child {
    border-radius: 5px 0 0 5px;
}

.notesDropDown li:last-child {
    border-radius: 0 5px 5px 0;
}

.notesDropDown li:only-child {
    border-radius: 5px;
}

#contentFirstMenu li:first-child {
    border-radius: 5px 5px 0 0;
}

#contentFirstMenu li:last-child {
    border-radius: 0 0 5px 5px;
}

#contentFirstMenu li:only-child {
    border-radius: 5px;
}

#viewFullText section {
    margin-bottom: 10px;
}

.notification {
    color: #222;
    position: absolute;
    background: #fff;
    line-height: 12px;
    border: 1px solid #830600;
    border-radius: 15px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    font-weight: bold;
    font-size: 12px;
    -webkit-box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.2);
    padding: 2px 7px;
}

.dropdown-menu {
    min-width: 220px !important;
    padding: 5px !important;
}

.dropdown-toggle .caret {
    border-top-color: #999 !important;
    border-bottom-color: #999 !important;
}

.notesDropDown li.open .caret, .notesDropDown li:hover .caret {
    border-top-color: #fff !important;
    border-bottom-color: #fff !important;
}

#contentFirstMenu li.hover > a, #contentFirstMenu li:hover > a, #contentFirstMenu li.active > a, .notesDropDown li.open a, .notesDropDown li:hover a {
    color: #fff !important;
}

#contentFirstMenu > li {
    position: relative;
    float: none !important;
    width: 70px;
    background-color: #EEE;
    border: 1px solid #AAA;
    box-shadow: 0 2px 5px rgba(75, 75, 75, .5);
}

#contentFirstMenu a:hover, #contentFirstMenu > .active > a, .notesDropDown a:hover, .notesDropDown > .open > a {
    background-color: transparent !important;
    color: #FFF !important;
}

#contentFirstMenu a {
    color: #434343;
    font-weight: bold;
    font-size: 12px !important;
    padding-top: 10px;
}

#contentFirstMenu li:active, #contentFirstMenu li:hover, #contentFirstMenu li.active, .notesDropDown > li:hover, .notesDropDown li.open {
    background-color: #434343;
}



#contentContainer div, #contentContainer span, #contentContainer textarea {
    font-size: 12px;
    color: #535353;
}

#contentFirstMenu{
    text-align: center !important;
    z-index: 100;
    position: fixed;
}

@media screen and (min-width: 768px) {

    #contentFirstMenu {
        top: 25%;
        margin-left: 10px;
    }
    #contentFirstMenu a {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .notification {
        left: 60px;
        top: 40px;
    }
}

/* smartphone css */

@media screen and (max-width: 767px) {
    #contentFirstMenu {
        bottom: 5px;
        display: table;
        z-index: 100;
        clear: both;
        position: fixed;
        text-align: center !important;
        margin-left: 10px;
        margin-right: 10px;
        height: 45px;
    }

    #contentFirstMenu > li {
        float: none !important;
        display: table-cell !important;
        width: 25%;
        background-color: #EEE;
        border: 1px solid #AAA;
        margin: auto -5px;
        box-shadow: 0 2px 5px rgba(75, 75, 75, .5);
    }

    .notification {
        top: -10px;
        right: 5px;
    }

    #contentFirstMenu li:first-child {
        border-radius: 5px 0 0 5px;
    }

    #contentFirstMenu li:last-child {
        border-radius: 0 5px 5px 0;
    }

    #contentFirstMenu li:only-child {
        border-radius: 5px;
    }

    #contentContainer {
        margin-left: auto;
    }
}

JS Bin 举例

http://jsbin.com/ejetat/1/edit

4

2 回答 2

1

我认为这是 Firefox 对表格单元格显示的理解存在问题。

#contentFirstMenu > li {
...
  display: table-cell !important;
...
}

尝试将其更改为:

  display: inline-block !important;

我认为 FireFox 对“CSS 表格”的结构有点挑剔,而且您似乎没有表格行,因此作为替代方案,未经测试,您可以尝试将您的包装<ul>在 a 中<div>,给它<div>一个 display: table 和给你<ul>一个display: table-row

希望这可以帮助。

于 2013-05-10T13:28:31.367 回答
0

是因为你的li存在display: table-cell !important;

如果您可以稍微更改标记以使其具有.notification内部链接就可以了..

<li><a href="#">Item 1 Title<span class="notification">4</span></a></li>

并给出#contentFirstMenu a一个position:relative

在 jsbin 上,我在评论中添加了我的position:relative名字

jsbin:http: //jsbin.com/ejetat/2/edit

于 2013-05-10T13:04:30.290 回答