gpt4 book ai didi

css - 这个 IE CSS bug 叫什么? (双垂直填充)

转载 作者:太空狗 更新时间:2023-10-29 12:38:57 27 4
gpt4 key购买 nike

(请注意,这不是双边距错误。我现在将其称为双垂直填充错误,除非其他人对此有更聪明/有记录的名称?)

就在我以为我已经看到所有古怪的 IE CSS 错误时,我制作了一个简单的测试用例,它继续让我感到困惑。下面的页面在 FF、Opera 等中看起来和工作得很好。然而,IE 6 和 IE 7 似乎混淆了。我将让我在下面粘贴的文档说明一切。

编辑:我已将它放在以下 URL 中:http://jsbin.com/efele
在 IE 中打开它,然后在 FF 中再次打开它。比较。

我的问题是:这个错误叫什么? (我是不是在什么地方漏掉了这个?它是在 this page 上找到的吗?)我熟悉 3px 慢跑错误和双(水平)边距错误以及许多其他与 float 相关的错误。但是......垂直填充被复制了? (而且放错地方了,要开机。)

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>IE bork!</title>
<style type="text/css">
html, body {
margin:0;
padding:0;
}
#container {
border:1px solid red;
background-color:#CC99CC;
width:800px;
margin:0 auto;
padding-top:100px;
}
#sidebar {
float:left;
display:inline;
width:200px;
border:1px solid blue;
background-color:#00CCFF;
}
#content {
float:right;
display:inline;
width:510px;
border:1px solid green;
background-color:#66CC99;
}
.clear {
clear:both;
/* height:0px; <<< setting height seems to be the only thing that makes this work as expected?!? */
background-color:#CCCCCC; /* bg color here is just for debugging */
}
</style>
</head>
<body>
<div id="container">
<div id="sidebar">I am the sidebar</div>
<div id="content">I am the content</div>
<div class="clear"><!-- clear! --></div>
</div>
<p>There should be 100px of space above the two floats, but <em>no</em> space below them...</p>
</body>
</html>

P.S.,我最终想出了如何安抚 IE。解决方案(在我的“清除”div 上明确设置高度)被注释掉以显示错误。我只希望我能回到生命的最后几个小时,那是我偶然发现真正的问题/解决方案的时间!

谢谢!

最佳答案

鉴于您找到的解决方案,它似乎是 hasLayout IE 怪癖。 (在 IE 的眼中将 hasLayout 显式设置为 true)

关于css - 这个 IE CSS bug 叫什么? (双垂直填充),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1823551/

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