标签:
1.如何让一个绝对定位的div居中:如 div{position:absolute width:300px; height:400px; }
1.
left:0;right:0;height:0;top:0;//IE8下不兼容
2.
margin-left: -150px;margin-top: 200px;top:50%;height: 50%;//兼容各浏览器
常用css解决方案
原文地址:http://www.cnblogs.com/hfhsummer/p/4587735.html