怎么使div居中对齐?
margin:0 auto;
但这个盒子必须有宽,只要有宽的块级元素居中都要用这句话
<head>
<style>
#main{
width:400px;
height:350px;
}
</style>
</head>
<div id="main">
</div>