浮动

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>浮动</title>

<style type="text/css">
.div1{
width: 100px;
height: 100px;
background: yellow;
/*float: right;*/
float: left;
/*clear: both;*/
}
.div2{
width: 200px;
height: 200px;
background: gold;
float: left;
clear: both;
}
.div3{
width: 100px;
height: 100px;
background: greenyellow;
float: left;
/*clear: both;*/
}

</style>


</head>
<body>

<div class="div1">div1</div>
<div class="div2">div2</div>
<div class="div3">div3</div>


</body>
</html>

posted @ 2016-06-10 19:40  顾锦书-王丹  阅读(184)  评论(0编辑  收藏  举报