由于某些原因,我的平铺图像不能覆盖整个背景。虽然当我稍微调整窗口大小时,它会填满整个背景。
背景在css中设置。
body {
background: url(img/tile.gif) #e6e6e6;
width: 100%;
height: 100%;
}这是在Chrome和Safari中的,所以webkit。在Firefox中运行良好。

发布于 2012-05-24 14:35:18
尝试:
body{
background-image: url(img/tile.gif);
background-color: #e6e6e6;
background-repeat: repeat-x;
}发布于 2012-05-24 14:37:52
background: url(img/tile.gif) repeat #e6e6e6;https://stackoverflow.com/questions/10732272
复制相似问题