平铺的背景图像不会覆盖整个页面

时间:2012-05-24 06:29:46

标签: css css3 background background-image

出于某种原因,我的平铺图像不会覆盖整个背景。虽然当我调整窗口大小时它填满了整个背景。

背景在css中设置。

body {
  background: url(img/tile.gif) #e6e6e6;
  width: 100%;
  height: 100%;
}

这是在Chrome和Safari中,所以webkit。在Firefox中运行良好。

tile img

2 个答案:

答案 0 :(得分:3)

尝试:

body{
 background-image: url(img/tile.gif);
 background-color: #e6e6e6;
 background-repeat: repeat-x;
}

答案 1 :(得分:1)

background: url(img/tile.gif) repeat #e6e6e6;