level 1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<title>布局</title>
<style type="text/css">
.clear{clear:both;}
#head{
width:960px;
margin:0 auto;
height:100px;
border:1px solid #ccc;
}
#menu{
width:960px;
margin:0 auto;
height:40px;
border:1px solid #ccc;
padding:0;
}
#main{
width:960px;
margin:0 auto;
height:500px;
border:1px solid #ccc;
}
.main_left{
width:350px;
float:left;
height:500px;
border:1px solid #ccc;
}
.main_right{
width:600px;
float:right;
height:500px;
border:1px solid #ccc;
}
.right_center{
width:400px;
float:left;
height:500px;
border:1px solid #ccc;
}
.right_content{
width:180px;
float:right;
height:500px;
border:1px solid #ccc;
}
#foot{
width:960px;
margin:0 auto;
height:80px;
border:1px solid #ccc;
}
</style>
</head>
<body>
<div id="head"></div>
<div class="clear"></div>
<ul id="menu"></ul>
<div class="clear"></div>
<div id="main">
<div class="main_left"></div>
<div class="main_right">
<div class="right_center"></div>
<div class="right_content"></div>
</div>
</div>
<div class="clear"></div>
<div id="foot"></div>
</body>
</html>
2013年01月17日 05点01分

