これは、ページの中央にコンテナを配置する非常に簡単な手順です。
<style type="text/css">
body{
margin: 0;
padding: 0;
}
#container{
width:960px;
float:left;
margin:0 auto;
}
</style>
...
<div id="container">
Content
</div>
なぜcontainer
中央に配置されないのか誰か教えてもらえますか?
ありがとう