IE 10,11背景大小的问题

时间:2014-02-14 15:23:54

标签: html css css3 internet-explorer background-image

在此处查看我的演示页面 http://maze.andmorestuff.com/ 我将背景大小设置为100%100%,除了Internet Explorer 9,10,11之外,所有浏览器都能正常工作。这是Css:

body {
  color: #5c5c5c;
  font-family: Helvetica, Arial, sans-serif;
  background-color: #ffffff;
  background-image: url("https://s3.amazonaws.com/themescdn/52fe33b4a9b5f3dshowroom01.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-attachment: scroll;
}

你能告诉我为什么它不能用于IE吗?或者你可以建议解决这个问题吗?

1 个答案:

答案 0 :(得分:2)

正如评论中所提到的,IE9 +支持background-size(所以这不是问题)

问题是身体没有身高。赋予<html> 100%的高度对我有用,但您也可以通过向身体添加clearfix来使其工作,以便清除浮动的后代。

截图:

http://linenwoods.com/test.jpg