<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>上中下等宽</title>
<style type="text/css">
.container{
max-width: 960px;/*设置最大宽度为960px*/
margin: 0 auto;/*设置内部的块元素水平居中*/
}
.header{
height:50px;
background-color: #000000;
}
.main{
height:600px;
background-color: #6531D0;
}
.footer{
height:50px;
background-color: #000000;
}
</style>
</head>
<body>
</body>
</html>