在CSS中怎用设置可以使背景图片全屏显示?

2024-11-29 11:31:59
推荐回答(2个)
回答1:

background: url(ab.gif) repeat; //背景为ab.gif,横向、纵向平铺

① 如果是做网站的水印背景,可以放到body里,
② 如果是做页面的背景,放到最外层的div里,

比如:
① body{background: url(ab.gif) repeat;margin:0px auto;}
② .box{background: url(ab.gif) repeat;margin:0px auto;}

单纯横向平铺:repeat-x
单纯纵向平铺:repeat-y
不平铺:no-repeat

回答2:

width:100%;background:(url) repeat-x;

拉伸了 就可以全屏显示了