首页 > 代码库 > margin:auto实现绝对定位元素的水平垂直居中

margin:auto实现绝对定位元素的水平垂直居中

代码拍上,赶时间的童鞋拿着用就好:

div {
width: 1000px; height: 500px;
position: absolute; left: 0; top: 0; right: 0; bottom: 0;
margin: auto; /* 重点在于 auto */
}

博主之前用的方式也是不错,只是在不知道“container”的长、宽时需要额外使用JQ来获取长宽,这么看来,第一种方法更加万金流:)

#container{
position:absolute;
left:50%;
top:50%;
margin:-25px 0 0 -100px;
}

margin:auto实现绝对定位元素的水平垂直居中