我想在我的網站的標題中有一個背景圖像,但截至目前它不會顯示。我的文件設置如下:背景圖像不會顯示
d:\ mywebsite
圖片,home.css,index.html的
圖片 rocks.jpg
我目前擁有的代碼是:
<div class="header-image" style=background-image: url("../Image/rocks.jpg")>
</div>
編輯
CSS:
#header .header-image {
width: 100%;
height: 400px;
background-position: left center;
background-size: 100%;
background-repeat: no-repeat;
}
你檢查了瀏覽器控制檯嗎?可能是它沒有找到圖像,錯誤必須以紅色字母出現 – wilsotobianco
您的div有寬度和高度嗎? – varunvlalan
可能的重複http://stackoverflow.com/questions/5846637/why-an-inline-background-image-style-doesnt-work-in-chrome-10-and-internet-ex –