<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>网页框架</title>
<style>
#container
{
width:1024px;
}
#header
{
height:120px;
background: pink;
}
#main
{
height:420px;
background: deepskyblue;
}
#lside
{
width:600px;
height:420px;
background: red;
float: left;
}
.four
{
width: 260px;
height:160px;
backgroud:purple;
margin:10px;
float:left;
}
#rside
{
width:424px;
height:420px;
backgroud:green;
float:right;
}
#footer
{
height:100px;
background: yellow;
}
</style>
</head>
<body>
<div id="container">
<div id="header"></div>
<div id="main">
<div id="lside">
<div class="four"></div>
<div class="four"></div>
<div class="four"></div>
<div class="four"></div>
</div>
<div id="rside"></div>
</div>
<div id="footer"></div>
</div>
</body>
</html>
小菜鸟__