您是否嘗試過更改類名稱,儘管我不認爲這是因爲類名造成的。這是因爲你的圖片網址。由於Gusto是您的項目文件夾,將URL更改爲「Gusto_Background_Food.jpg」將可行。
的index.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<title>Gusto Food</title>
</head>
<body>
<div class="jumbotron background">
<h1>Gusto Food!</h1>
<p>There must be something good that we are looking for.</p>
<p><a class="btn btn-primary btn-lg" href="#" role="button">Learn more</a></p>
</div>
</body>
</html>
的style.css
.background{
height:500px;
display:flex;
align-items:center;
background:url("Gusto_Background_Food.jpg") center center;
background-size:cover;
margin:100px 0px;
}
文件夾結構:
Gusto
- index.html
- style.css
- Gusto_Background_Food.jpg
我想這會幫助你。如果這不適合你,請隨時發表評論。
你可以發佈jsfiddle或codepen嗎? – Froy
你確定你想要一個到你的本地計算機的路徑嗎? –
我已經在jsfiddle上測試過你的代碼。它工作正常。看看:https://jsfiddle.net/dzul1983/tmukas42/ –