我想在我的网站中放一张图片,并在CSS中使用绝对类。
我有这个CSS:
.christmas-santa {background:url(../images/header/santa.jpg) left bottom no-repeat scroll;
position:fixed; left:0px; top:0px; width:100%; height:100%; border:1px solid #000000;}
该CSS在Mozila中可以使用,但在IE中无法正常使用。
我应该做些什么改变?
最佳答案
哪个版本的IE? IE6和position:fixed
存在已知问题,但已解决。 http://divinentd.com/experiments/emulating-position-fixed.html
IE7+ will only support position:fixed
in standards compliant mode,它需要一个有效的DOCTYPE。
在页面顶部添加此内容;<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
关于html - 绝对类在IE中不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4321589/