我的整個網站都是響應式,除了我的橫幅/標題,我似乎無法找到它的修復。我使用視口進行響應,我的橫幅根本沒有反應!需要幫助在頭部圖像上獲得響應式設計
這裏是頭一個簡單的jsfiddle, https://jsfiddle.net/Syystole/L9r2p9so/19/
HTML
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<div class="WrapperPage">
<div id="banner"></div>
</div>
CSS
.WrapperPage {
max-width:62em;
margin:auto;
}
#banner {
background-image: url("http://lorempixel.com/400/200/sports/1"); <!./ starts from current directory>
text-align:center;
padding:170px;
}
好像你要使用'背景大小:cover'但不能肯定。當你說你想讓它響應時,你的意思是什麼?您希望它在視口大小調整時的行爲如何? –
只是想在較小的視圖中看到整個圖像 – Syystole