div
中央に配置したい2つのがあります。
これが私のコードですが、機能しません:
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;
}