源于我网站上的边框和边距的实际问题,我制作了这个测试示例,我认为它有点奇怪:
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-color:black;
}
.outer {
width:100px;height:100px;
}
.inner {
margin-top:40px;
height:20px;
border:1px solid red;
}
#outer-1 {
background-color:blue;
border-top:10px solid yellow;
}
#outer-2 {
background-color:green;
border-top:none;
}
#sep {
background-color:white;
}
</style>
</head>
<body>
<div id="outer-1" class="outer">
<div class="inner">
CONTENT
</div>
</div>
<div id="sep">TEST</div>
<div id="outer-2" class="outer">
<div class="inner">
CONTENT
</div>
</div>
</body>
</html>
为什么在#outer-2 中移除border-top 时,“.inner”的上边距会移动到“外部”?我会认为红色边框会留在相对相同的位置的蓝色和绿色区域内?但事实并非如此。
为什么?有没有办法让它看起来像我想象的那样?