我無法獲取此背景圖片以顯示。它應該出現在背景中,標題重疊。我正在使用一個id選擇器。我直接從我上課的書中直接複製了這本書,而且根本不工作。ID選擇器中的背景圖片未顯示
這是我的代碼。我很新的CSS
<!DOCTYPE html>
<html lang="en">
<head>
<title>Fall Nature Hikes</title>
<style>
#content { background-image: url(fall.jpg);
background-repeat: no-repeat;
margin-left: auto;
margin-right: auto;
width: 640px;
height: 480px;
padding-top: 20px; }
h1 { background-color: #FFFFFF;
opacity: 0.6;
font-size: 4em;
padding: 10 px; }
</style>
</head>
<body>
<div id="content">
<h1>Fall Nature Hikes</h1>
</div>
</body>
</html>
background-image :(「fall.jpg」); – mlegg