gpt4 book ai didi

html - CSS 导致 UL 在 IE 中缩进太多

转载 作者:技术小花猫 更新时间:2023-10-29 12:22:24 28 4
gpt4 key购买 nike

我在页面顶部有一个导航栏。在 FF 和 Chrome 中,导航栏显示正常。然而,在 IE8(有或没有兼容性)中,UL 似乎从左侧缩进,而不是每个 li 只是整个 li;尽管声明

text-align:center; width:600px; margin:auto; padding-left:0;

知道是什么原因造成的吗?

最佳答案

margin-left:0px;

在 Firefox 中,UL 默认向左填充,在 IE 中,它有一个左边距。

例子:

<html>
<head>
<style>

ul{
border:1px solid red;
margin:0px;
list-style:none;
padding:0px;
}

li{
border:1px solid green;
margin:0px;
}

</style>
</head>
<body>

<ul>
<li>this</li>
<li>that</li>
<li>these</li>
<li>those</li>
</ul>

</body>
</html>

关于html - CSS 导致 UL 在 IE 中缩进太多,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1184770/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com