情况是:
CSS:
<style>
#aux1{
position:relative;
background-color:#ccc;
width:100%;
height:200px;
}
#aux2{
display:block;
background-color:#F00;
width:100px;
height:100px;
margin:20px;
}
</style>
的HTML:
<html><head></head>
<body>
"...some content (div with height: auto)"
<div id="aux1">
<div id="aux2">
</div>
</div>
</body>
</html>
问题是来自 aux2 的 margin 属性的行为很奇怪,如下图所示:
如果我将溢出:隐藏在 aux1 中,结果趋于正常:
为什么我什至需要使用溢出:隐藏边距(尤其是边距顶部)才能正常运行?