所以...... 我有一個文件夾叫做介紹。 在這個文件夾中都是index.html和style.css文件。在介紹文件夾中是另一個名爲「圖像」的文件夾,用於存儲我將使用的圖像。在該文件夾(圖像)是稱爲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;
}
背景圖像和背景儘管出於某種原因,顏色並沒有出現。 bg顏色保持白色,圖像無處可見。幫幫我?
爲什麼你'@字體face'出本身這樣呢? – j08691
刪除'font-face'。 – Vucko