float和margin
在上一个块元素中加上浮动,下一个块元素清除浮动并加上margin-top,这里的外边距为什么没有展示出来?
在上一个块元素中加上浮动,下一个块元素清除浮动并加上margin-top,这里的外边距为什么没有展示出来?
2017-01-05
样式表里是这样:
.div00 {
width: 50px;
height: 50px;
float: left;
margin-bottom: 50px;
background-color: blue;
}
.clrfloat {
width: 50px;
height: 50px;
margin-top: 200px;
background-color: red;
clear: both;
margin-bottom: 100px;
}
文档中的位置是这样的:
<div class="div00">float</div>
<div class="clrfloat">hello</div>
两个div的样式大致就是这样,但是上外边距就一直没有效果
举报