Live site.移動設備 - 不同的背景 - 媒體查詢不工作
這是我在利用不同的CSS爲移動設備與普通屏幕的第一次嘗試。 要做到這一點,我using-
@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px) {
background: url('img/background.jpg') no-repeat center center fixed;
background-size: cover;
height: 100%;
}
然而,它似乎並沒有工作(我可以在iPhone上唯一的測試)。任何想法,爲什麼這可能是?我也試過@media all
無濟於事。
你確定它不起作用嗎?您是否嘗試過使用純色的「背景色」來查看圖片是否有問題? –
您沒有在該代碼中定位HTML元素? – cih
@RoddyoftheFrozenPeas是的,改成'background:red;'沒有效果。 – AMC