我有两个 div,一个“容器”和一个“内容”。如果内容在容器内,则适合容器。
#container {
display:block;
width:300px;
margin:auto;
background:green;
}
#content {
display:block;
margin:20px; /* HERE IS THE ERROR */
background:yellow;
}
顶部和底部边距不在父级内部,但左侧和右侧在。
为什么会发生这种情况?
编辑: JSFIDDLE示例: