为什么我的背景图片不会出现在firefox中,但它会在Dreamweaver中出现?

时间:2011-10-10 01:25:22

标签: html css png

我的背景图片拒绝出现在我网站的首页上。我检查了所有的路径,但仍然无法弄清楚出了什么问题。任何帮助表示赞赏

HTML:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Coming Soon...</title>
<link href="styles/comingstyle.css" rel="stylesheet" type="text/css" />
<link rel="shortcut icon" href="favicon.ico">
<link rel="icon" type="image/gif" href="images/logo.png">
</head>

<body>
<div id="container">
  <div id="content">
    <p> <img src="images/comingsoon.png" width="640" height="400" /></p>
  </div>
</div>
</body>
</html>

CSS:

#content {
    width: 640px;
    text-align: center;
}
#container {
    font-family: "Myriad Web Pro", Helvetica, Arial;
    font-size: 18px;
    width: 640px;
    margin: auto;
}
#footer {
    text-align: center;
    color: #FFF;
}
body {
    background-image: url(../images/background.png);;
}

1 个答案:

答案 0 :(得分:3)

访问background.png会返回403(禁止)。在您的网络服务器上更改该文件的访问权限。