<!DOCTYPE html>
<html>
<head>
<style type="text/css">
*{margin:0;padding:0;}
.box1{width:300px;height:40px;background:#763233;float:left;}
.box2{width:300px;height:40px;background:red;float:left}
.box3{width:300px;height:40px;background:pink;float:right;}
.clear{clear: both;}
</style>
<meta charset="utf-8">
<title>这个是我的第一个css中的第一个浮动</title>
</head>
<body>
<div class='box1'>
<p>第一个板块</p>
</div>
<div class='box2'>
<p>第二个板块</p>
</div>
<div class='box3'>
<p>第三个板块</p>
</div>
<div class="clear"></div>
</body>
</html>