Firefox上的额外边框div,但Safari或Chrome中没有

时间:2013-12-02 14:57:55

标签: css firefox

我有这个CSS问题。有些div只在Firefox中显示一个额外的边框:

enter image description here

但在Safari和Chrome上看起来不错:

enter image description here

这是div的css:

.div {
    color:#555555;
    font-size: 13pt;
    padding: 15px 20px;
    margin-bottom:-5px;
    background-color: #ffffff;
    height:auto; display:inline-block; width:900px;
    border-top:solid 1px #e1e1e1;
    z-index: 90;
    position:relative;
}

1 个答案:

答案 0 :(得分:0)

我认为您的问题是display:inline-block;,您可以将它们内联。为什么? firefox似乎插入了新行,这就是你看到的空间。是不是有理由不使用display: block? (只是在你的小屏幕截图中看不到)