我有兩個div
我想要居中他們。中心兩個div
這裏是我的代碼,不工作:
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;
}
你使用的是html5嗎? – 2013-02-08 14:46:21
(http://stackoverflow.com/questions/5357310/how-to-center-two-divs-floating-next-to-one-other) – 2013-02-08 14:46:57
是的,但只是一點點 – user2013488 2013-02-08 14:47:49