1

出于某种原因,我的平铺图像没有平铺在整个背景上。虽然当我稍微调整窗口大小时它会填满整个背景。

背景是用css设置的。

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

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

瓷砖图片

4

2 回答 2

3

尝试:

body{
 background-image: url(img/tile.gif);
 background-color: #e6e6e6;
 background-repeat: repeat-x;
}
于 2012-05-24T06:35:18.097 回答
1
background: url(img/tile.gif) repeat #e6e6e6;
于 2012-05-24T06:37:52.183 回答