居中固定宽度
网页结构图
代码
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title></title>
<style type="text/css">
* {
margin:0;
padding:0;
}
header,
#banner,
main,
footer {
width: 980px;
background-color: #CCCCCC;
border: 1px dashed #4F4F4F;
margin: 0px auto;
}
header {
height: 100px;
}
#banner {
height: 200px;
margin: 10px auto;
}
main {
height: 400px;
}
footer {
height: 100px;
margin: 10px auto 0px;
}
</style>
</head>
<body>
<header>头部</header>
<div id="banner">
轮播图
</