一般來講,為兼容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;
}