这应该是一个将容器放在页面中心的非常简单的过程。
<style type="text/css">
body{
margin: 0;
padding: 0;
}
#container{
width:960px;
float:left;
margin:0 auto;
}
</style>
...
<div id="container">
Content
</div>
谁能告诉我为什么container
不居中?
谢谢