css怎么设置背景图片
发布网友
发布时间:2022-04-22 08:13
我来回答
共2个回答
热心网友
时间:2022-04-06 13:28
background: #ff0000 url(你图片的地址) no-repeat fixed 0 0;
#ff0000 表示背景图片由于某种原因无法显示所显示的颜色
url() 在括号中输入你想要作为背景的图片
no-repeat 表示该背景图片是否重复显示(repeat-x repeat-y repeat 等)
fixed 0 0; 背景图片想要显示区域的定位
热心网友
时间:2022-04-06 14:46
body{
background-image:url(../images/bg.gif);
}
表示设置主体的背景图片,注意文件路径