我对利润感到困惑。我在 div 内容中有一个徽标。如果我给 div 徽标添加一个 margin-top,这个边距会出现在内容和页面之间。为什么?
这是示例:http: //jsfiddle.net/bCkpb/
CSS:
#content {
position:relative;
margin:0 auto;
width:300px; height:250px;
background-color:blue;
}
#logo {
margin:20px auto; /* Why this 20px appear between the page and the content? */
width:120px; height:120px;
background:yellow;
}
HTML:
<div id="content">
<div id="logo"> </div>
</div>