【发布时间】:2014-11-30 04:56:48
【问题描述】:
我什么都试过了!但是我的背景图片 (gif) 不会出现..
我的文件存储在我的 ftp 上的 public_html 中。
我的文件在我的 html 文档中这样链接:
<link href="css/arena.css" rel="stylesheet" type="text/css" />
我在 css 中有以下几行:
body {
background-image: url('../images/2.gif');
}
我希望有人可以帮助我,因为这真的很令人沮丧。
提前致谢。
【问题讨论】:
-
您的语法有错误,请尝试:
background-image: url('../images/2.gif'); -
../images/2.gif表示必须在images文件夹中找到2.gif,该文件夹必须与您的css文件夹位于同一父文件夹中。
标签: css image background-image