我需要将一些图片作为我网站的背景中心,这在Chrome和Firefox上运行良好,但在IE上,图片无法根据浏览器尺寸进行调整...
如果我调整窗口大小,图像也会在chrome和firefox中调整大小..但不会在IE上调整
看看:http://www.alsite.com.br/misskessi
这是我的css:
html, body {
width:100%;
height:100%;
margin:0;
padding:0;
background: #FFFFFF url(../imagens/fundo_site2.jpg);
background-repeat:no-repeat;
background-size:contain;
background-position:center
}
任何提示?
答案 0 :(得分:1)
不幸的是,这不是IE支持的东西(至少在旧版本中),你需要使用JavaScript作为解决方案。有一些插件,例如Backstretch,但是通过查看您的网站,这可能不是您的完美解决方案。我希望这会有所帮助。