我有两个div
要居中的 s。
这是我的代码,它不起作用:
HTML
<div id="central-top-wrapper" class="clearfix">
//content
</div>
<div id="central-bottom-wrapper" class="clearfix">
//content
</div>
CSS
#central-top-wrapper {
float: left;
width: 70%;
display: block;
margin: 0 auto;
}
#central-bottom-wrapper {
width: 43%;
float: left;
display: block;
margin: 0 auto;
}