css背景图片不会显示

时间:2014-10-05 21:58:50

标签: css image background-image

我已经尝试了一切!但我的背景图片(gif)不会出现..

我的文件存储在ftp上的public_html中。

我的文件在我的html doc中链接如下:

<link href="css/arena.css" rel="stylesheet" type="text/css" />

我在css中有以下几行:

body {
background-image: url('../images/2.gif'); 
}

我希望有人可以帮助我,因为这真的令人沮丧。

提前致谢。

3 个答案:

答案 0 :(得分:4)

语法错误,您必须删除:

url('../images/2.gif)代替url:('../images/2.gif')

您可以查看background-image property documentation

答案 1 :(得分:2)

问题解决了。它与权限有关。谢谢你们所有的帮助,非常感谢!

答案 2 :(得分:1)

更改路径以包含../img/bgheader.jpg进行修复。