我已经为div添加了背景图片,但图片没有显示,请帮我解决我错过的问题。 这是代码 CSS:
.riseImages
{
position: absolute;
top: 0px;
width: 100%;
height: 650px;
overflow: hidden;
z-index: 4;
background-image: url("img\page1\bg shapes.png");
background-repeat: repeat;
background-size: initial;
/*-webkit-animation-name: rise;
-webkit-animation-duration: 18s;
-moz-animation-delay: 18s;
-webkit-animation-delay: 18s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;*/
}
HTML:
<div class="riseImages topRise"></div>
<div class="riseImages bottomRise"></div>
我没有得到所需的输出,背景图像没有出现,之前它工作正常。
答案 0 :(得分:3)
使用CSS:
root@server [/var/spool/exim/msglog]# exim -Mvh 1ZfRwk-003bDf-JB
答案 1 :(得分:0)
更改css background-image: url("img\page1\bg shapes.png");
请添加此方法Forward slash: /
喜欢Css background-image: url("img/page1/bg shapes.png");
或
试
基本上给出:
background-image: url("../img/page1/bg shapes.png");
答案 2 :(得分:0)
background-image: url("img\page1\bg shapes.png");
什么是bg
它是你的文件夹或图像名称?避免使用其中的空间
答案 3 :(得分:0)
我认为问题是图片名称中的空格。
尝试将图片重命名为bg_shapes.png
然后将其与background-image: url("/img/page1/bg_shapes.png");