IE8下绝对居中的margin:auto兼容问题解决办法

 

position: absolute;
margin: auto;
left: 0;
top: 0;
bottom: 0;
right: 0;

 

首先页首必须设置文档类型:
  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transition al.dtd">


且在head内添加:
  <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7"/> 即可!

  (转自http://www.zhnao.com/post/197.html实在太感谢了,这个问题困扰了我一个下午~)

原文地址:https://www.cnblogs.com/muwei/p/4898510.html