中心在div内对齐div?

时间:2011-12-21 09:55:49

标签: css

如何在页面中心对齐3个浮动div??

<div style="width:100%">
     <div style="width:90%">
           <div style="width:80%">
                //Content
           </div>
     </div>
</div>  

2 个答案:

答案 0 :(得分:12)

在CSS中使用margin: auto

<div style="background-color: red; height: 100px; width: 500px; margin: auto;">
     <div style="background-color: green; height: 100px; width: 300px; margin: auto;">
           <div style="background-color: blue; height: 100px; width: 100px; margin: auto;">
                //Content
           </div>
     </div>
</div>  

答案 1 :(得分:3)

如果您居中的元素具有指定的宽度,则可以将其置于margin: 0 auto

的中心位置