61,126
社区成员




<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<style>
html,body{
margin: 0;
padding: 0;
}
.container{
width: 1020px; /*调整页面大小 满屏可以用 100%*/
margin: 0 auto;
}
.head {
width: 100%;
height: 100px;
background-color: #999999;
}
.page {
overflow: hidden;
}
.left {
width: 30%;
height: 400px;
float: left;
}
.center {
width: 40%;
height: 400px;
/* margin: 0 auto; */
float: left;
}
.right {
width: 30%;
height: 400px;
float: right;
}
.foot {
width: 100%;
height: 50px;
background-color: #999999;
}
</style>
<body>
<div class="container">
<div class="head">这里是头部</div>
<div class="page">
<div class="left">这里是侧栏新闻列表</div>
<div class="center">这里是产品列表</div>
<div class="right">这里是副内容区</div>
</div>
<div class="foot">这里是底部</div>
</div>
</body>
</html>