我的包装是 1000px。我怎样才能让我的导航栏和页脚成为整个页面?如果尝试将导航和页脚从包装器中取出,则不会居中。
<html>
<head>
<meta charset="utf-8"/>
<title>
</title>
</head>
<body>
<div id="wrapper">
</div>
</body>
</html>
CSS
*{
margin:0px;
padding:0px;
list-style-type:none;
}
body
{
background:white;
text-align:center;
font-family:Arial;
font-size:12px;
}
#wrapper
{
width:1000px;
margin:2px auto 2px auto;
text-align:left;
}