我想要使用圖像作爲我的jumbotron的背景,無法獲取圖像顯示。我可以更改jumbotron的其他屬性,但無法弄清楚我在做什麼背景圖像錯誤。如何獲得Bootstrap jumbotron上的背景圖像
這裏是我的html
<header>
<div class="jumbotron">
<div class="container">
<h1 class="display-3"> Large Text </h1>
<h1 class="display-4"> Smaller Text </h1>
<p><a href="#" class="btn btn-success btn-lg">Learn More »</a></p>
</div>
</div>
</header>
...這是我的CSS
.jumbotron {
background: url("img/banner.jpg");
color: black;
}
爲什麼我不能得到這個工作?我的文件路徑絕對正確。
在此先感謝您的幫助!
我原本回答這個說Bootstrap可能覆蓋你的'背景'聲明。然而,看起來Bootstrap不使用'background',而是使用'background-color',所以我的回答是不正確的。我建議你仔細檢查一下,以確保你的文件路徑絕對正確,因爲我相信你應該有效。 –
剛剛運行一個快速測試(http://imgur.com/a/RFa73)應該沒有問題的方式,你做了他們。爲什麼你的jumbotron在你的頭部? – Craicerjack
您是否檢查過您的開發人員工具? css規則是否適用於您的「jumbotron」div? (右鍵單擊 - >檢查元素可能會有所幫助......) – tgogos