我有一个带有一些文字的简单容器。我试图把一个没有重复的背景图像放在文本后面的中心,但我的代码不起作用。这是一个参考:http://www.danielhopwood.com/#about
我的代码是文本容器的代码:
.main-descr {
background: url(img/cnp_bg.png) no-repeat center;
}
但图片(cnp3.png)没有显示,点击此处:http://www.mysecretathens.gr/CNP/about.html
为什么这样,我该怎么办?使用background-image
没有任何区别..
答案 0 :(得分:2)
该图片获得了404。网址应该与CSS相关。
background: url(../img/cnp3.png);
注意../
然后你应该能够做到:
background: url(../img/cnp3.png) no-repeat center center;