第2種腿箩,和第三種方法,都需要設(shè)置html劣摇,body度秘,以及父元素的 的長(zhǎng)寬為100%
1.? 左右各百分之五十,左右邊距設(shè)為負(fù)的寬高的一般饵撑,讓圖形縮為空剑梳。
width: 400px;
height: 200px;
background: #ccc;
position: absolute;
left:50%;
top:50%;
margin-left:-200px;
margin-top:-100px;
2 第二種方法 flex方法,設(shè)置父容器
display: -webkit-flex;
display: flex;
justify-content:center;
align-items:center;
3. 第三種方法 ? 轉(zhuǎn)換為table表格塊
div1{
width: 100%;
height:100%;
display: table;
}
div2{
display: table-cell;
vertical-align: middle;
}
div3{
width: 400px;
height: 200px;
background: #ccc;
position: relative;
margin:0 auto;
overflow: hidden;