所以....我有一个名为 intro 的文件夹。该文件夹中同时包含 index.html 和 style.css 文件。在 intro 文件夹中是另一个名为“images”的文件夹,用于存储我将使用的图像。在该文件夹(图像)中有一个名为 background.jpg 的图像
代码如下: HTML
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="style.css"/>
<title>test</title>
</head>
<body>
<div id="content">
<div class="info">
Want to know more about Dreams?
</div>
</div>
</body>
CSS
/*CSS Style Sheet*/
@font-face
body {
background-color: #080808;
background-image: url(images/background.jpg);
margin: auto;
}
#content {
width: 1000px;
background-color: #080808;
margin-left: auto;
margin-right: auto;
margin-top: 500px;
}
由于某种原因,背景图像和背景颜色没有显示出来。背景颜色保持白色,图像无处可见。帮助?