我想在移動時填充(高度)背景圖像。當我使瀏覽器變小時,它似乎不像我的媒體查詢踢英寸任何幫助將不勝感激。這裏是我的CSS是什麼樣子:移動時Bootstrap背景圖像沒有填滿空間
#main {
background-image:url(../images/cc.jpg);
height:650px; background-size:cover;
background-position:0 -210px;
background-repeat:no-repeat;
}
#main .row {
margin-top:200px;
}
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
#footer {
font-size:10px;
}
#main {
background-image:url(../images/cc.jpg);
height:100%;
background-size:cover;
background-repeat:no-repeat;
}
#id{ margin-top:90px; }
#main .row {
margin-top:100px;
}
}
@media only screen and (min-device-width : 320px) and (max-device-width : 568px) and (orientation : landscape) {
#footer {
font-size:10px;
}
#main {
background-image:url(../images/cc.jpg);
height:100%;
background-size:cover;
background-repeat:no-repeat;
}
#id{ margin-top:90px; }
#main .row {
margin-top:100px;
}
}
這裏的網址,如果你想看到的頁面是什麼樣子:
感謝所有您的幫助!我完全沉迷於這一個。
d
使用簡寫語法幾乎總是一個偏好問題。 – 2014-10-31 02:55:28
,這似乎有幫助,但當我縮小,它仍然看起來有點小,因爲我縮小了。任何想法如何處理? – Damien 2014-10-31 02:56:26
@ShawnErquhart以及線上較少的字節。 – Swordfish0321 2014-10-31 02:57:46