多人伦交性欧美,卡1卡2卡3乱码欧美,一个人免费观看高清视频,亚洲国产成人久久综合一区77,欧美性性性性xxxxoooo

css水平垂直居中(絕對定位居中)

2016/12/22 8:39:45   閱讀:1739    發(fā)布者:1739

使用絕對定位有個限制就是父集必須設(shè)置一個固定的高度。

首先HTML

1 <div id="box"> 
2     <div class="child"></div> 
3 </div>    

CSS

 1 #box { 
 2     position: relative; 
 3     height: 500px; 
 4     background: red; 
 5 } 
 6 .child { 
 7     width: 100px; 
 8     height: 100px; 
 9     background: blue; 
10     margin: auto; 
11     position: absolute; 
12     top: 0; 
13     right: 0; 
14     bottom: 0; 
15     left: 0; 
16 }

示例圖: