0

我有一个带有一些文本的简单容器。我试图将不重复的背景图像放在文本后面的中心,但我的代码不起作用。这是一个参考: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没有区别..

4

1 回答 1

2

它正在为该图像获取 404。url 应该是相对于 CSS 的。

background: url(../img/cnp3.png);

注意../

然后你应该能够做到:

background: url(../img/cnp3.png) no-repeat center center;
于 2013-04-26T21:03:50.910 回答