您的位置:首页 > Web前端 > HTML

html第一天div页面布局

2016-05-03 16:03 501 查看
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style>
#body{
width:1002px;
}
#header{
width:1002px;
height:100px;
background:blue;
}
#main{
width:1002px;
height:400px;
background:red;
}
#lside{
width:700px;
height:400px;
background: yellow;
float:left;
}
#rside{
width:302px;
height:400px;
background: pink;
float:right;
}
#footer{
width:1002px;
height:100px;
background: grey;
}
#lside .l_part1{
width:280px;
height:200px;
background: purple;
float:left;
}
#lside .l_part2{
width:280px;
height:200px;
background: green;
float:right;
}
#lside .l_part3{
clear:left;
width:280px;
height:200px;
background: orange;
float:left;
}
#lside .l_part4{
width:280px;
height:200px;
background: red;
float:right;
}
#rside .r_part1{
width:302px;
height:190px;
background:snow;
float:left;

}
#rside .r_part2{
clear:left;
width:302px;
height:187px;
background:brown;
}
</style>
</head>
<body>

<div id = "bo
4000
dy">
<div id = "header">头部</div>
<div id = "main">
<div id = "lside">主体 左
<div class = "l_part1">左上1</div>
<div class = "l_part2">左上2</div>
<div class = "l_part3">左下1</div>
<div class = "l_part4">左下2</div>
</div>
<div id = "rside">主体 右
<div class = "r_part1">右上</div>
<div class = "r_part2">右下</div>
</div>
</div>
<div id = "footer">脚部</div>
</div>

</body>
</html>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  html 布局