float属性定义在哪个方向浮动,有三个值,分别为left,right,none,inheirt。
- left : 向左浮动
- right:向右浮动
- none:不浮动
- inheirt:从父元素继承float属性的值
<style>
.div1{
width:300px;
height:200px;
float:left;
}
.div2{
width:300px;
height:300px;
float:right;
}
</style>
<div>
<div class="div1">这是第一个div元素<div>
<div class="div2">这是第二个div元素<div>
</div>