0

我只想在我网站主页的上半部分制作背景喷绘渐变。类似于这个网站的背景。有人可以通过跨浏览器支持帮助我做到这一点吗?

4

2 回答 2

2

背景图片:http ://www.tizag.com/pics/BannerTileBackground.gif

body {
    background-image: url(http://www.tizag.com/pics/BannerTileBackground.gif);
    background-repeat: repeat-x; 
    background-position: top;
}
于 2012-05-08T13:16:14.763 回答
1

那是使用 Css 的大背景图像。如果你愿意,你可以简写它。

body {
background:url(pathtoyourimage/image.gif) top left repeat-x scroll #fff;
}
于 2012-05-08T13:18:24.327 回答