<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>浮動</title>css
<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;*/
}html
</style>htm
</head>
<body>it
<div class="div1">div1</div>
<div class="div2">div2</div>
<div class="div3">div3</div>class
</body>
</html>meta