div绝对定位水平垂直居中(margin:auto实现绝对定位元素的居中)
div{
width: 500px
;
height: 500px
;
background: red
;
position:absolute
;
left:0
;
top: 0
;
bottom: 0
;
right: 0
;
margin: auto
;
}
div绝对定位水平垂直居中(margin 负间距)
div{
width:200px
;
height: 200px
;
background:red
;
position: absolute
;
left:50%
;
top:50%
;
margin-left:-100px
;
margin-top:-100px
;
}
转载请注明原文地址:https://ipadbbs.8miu.com/read-57526.html