Chrome和Firefox之间的水平高度不同

时间:2013-07-31 17:03:51

标签: html css web

Chrome和FF的页面非常不同,看起来Chrome中的边框位于li里面,因此高度为130px,但在FF中,边框在外面,因此高度为150px。

我为代码添加了更多信息。

<div class="service_promos cf">
    <ul>
        <li>
            <h2><a>item1</a></h2>
        </li>
        <li>
            <h2><a>item2</a></h2>
        </li>
    </ul>
</div>

这是css:

.service_promos {
    margin-top: 0;
}

.service_promos ul {
    width: auto;
    margin: 0;
    padding: 0;
    list-style: none;
    list-style-image: none !important;
}

.service_promos li {
    background: none;
    border-bottom: 10px solid #e2e1d6;
    border-left: 10px solid #e2e1d6;
    border-right: 10px solid #e2e1d6;
    min-height: 130px;
    margin-top: 0 !important;
    padding-right: 1em;
    list-style-type: none;
    padding: 1em 2em;
    display:block;
}

.service_promos h2 {
    float: left;
    margin-left: 5%;
    margin-top: 0;
    width: 70%;
    color: #FF6526;   
    font-size: 2.5em;
    font-style: normal;
    font-weight: 700;
    line-height: 1em
}

.service_promos h2 a {
    color: #FF6526;
    text-decoration: none;
}

1 个答案:

答案 0 :(得分:0)

您提供的项目看起来很好。

如果您对自己的外表仍然不满意,可以考虑在您的内容中使用 Normalize.css Reset.css 参考项目/页。

这些样式表的目的是帮助“规范化”常用的所有元素,使它们在不同的浏览器和环境中看起来相似。

我建议您检查是否有任何其他加载项或扩展程序可能会干扰您的任何元素的外观