日期:2014-05-16 浏览次数:20628 次
//style.css
#first{
width:300px;
height:200px;
background:red;
float:left
}
#second{
width:300px;
height:200px;
background:pink;
clear:right
}
#third{
width:300px;
height:200px;
background:green;
clear:left
}
#four{
width:300px;
height:200px;
background:blue;
float:right
}
<html>
<head>
<title>div的概念</title>
<link rel = "stylesheet" href = "style.css" type = "css/style.css"/>
</head>
<body>
<div id="first">第一个div</div>
<div id="second">第二个div</div>
<div id="third">第三个div</div>
<div id="four">第四个div</div>
</body>
</html>