html部分
<div class="ceshi">测试</div>
.ceshi{
width:200px;height:100px;background:#dd5522;position:fixed;left:0px;top:0px;right:0px;bottom:0px;margin:auto;
}
说明:当元素定义为 fixed时。需要它在网页中绝对居中,可以先将left,top,right,bottom,都设置为0
然后使用margin:auto来居中。不兼容ie6浏览器。
转载于:https://blog.51cto.com/reason2516/1649841