关于position:fixed;的兼容性问题

一般来讲,为兼容ie6与ie7会用到css hack

IE6中加入下滑线,eg:div{ _color: red }
IE7中加入*,eg:div{ * color: red }
其他浏览器不支持,只在IE6与IE7中起作用。

另一种写法:

IE6中: * html div{}
如,IE6不支持 position: fixed;,解决方法:

* html #menu{
  /*position: fixed;*/ 
  position: absolute;
  top: expression((e=document.documentElement.scrollTop)?e:document.body.scrollTop); 
}

/*or*/
* html, * html body{
  background-image: url(about: blank);
  background-attachment: fixed;
}

你可能感兴趣的:(关于position:fixed;的兼容性问题)