我用於我的背景(已修復)的圖像以Web格式顯示爲100%,但是當我在Ipad(1024x768)上模擬它時,圖像停止適應屏幕寬度僅佔屏幕高度的70%。Ipad上的背景圖像不顯示100%
這是我用過的網站格式的CSS:
.body{
background-image: url("/img/bg.jpg");
background-repeat: no-repeat;
background-attachment: fixed;
background-size: 100% auto;
height: 5700px;
width: 100%;
}
這是我用過的iPad風格的CSS:
@media screen and (max-width: 1024px) {
.body{
background-image: url("/img/bg.jpg");
background-repeat: no-repeat;
background-attachment: fixed;
background-size: 100% auto;
height: 5700px;
min-width: 1024px;
}
}
我試着min-width: 1024px;
因爲我發現了一個類似的question與該建議,但它沒有奏效。
可以試試寬度:100vw;?如果有幫助,我會寫一個答案 – RacoonOnMoon
@Traver ok,我現在就試試。 – Calicorio
我試過它在背景大小(不是寬度),它已經工作!謝謝!我會在下面發佈完整的答案。 – Calicorio