div中巢狀div水平垂直居中

流火行者發表於2016-05-15

div中巢狀一個居中的div有很多方法,如果不想調整邊距,有一個簡單的方法:

1     <div align="center" style="width: 200px;height: 200px;background: green;display: table-cell;vertical-align: middle;">
2         <div style=" width: 100px;height: 100px;background: blue;">
3         </div>
4     </div>


效果如下:

 

相關文章