此代碼是一個簡單的背景圖像,但顯示了3幅圖像時,通過手機瀏覽器看到我的網頁不是演戲響應
body {
background-image: url('image-1.jpg');
width: 500px;
height: 600px;
position: relative;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
@media only screen and (max-width: 767px) {
body {
background-image: url('image-2.jpg');
}
}
請提出修改意見,以使圖像適合屏幕
你不清楚你想達到什麼目的。無論如何,如果你想讓網頁響應 - 不要設置像素寬度和高度。順便說一句,我只能看到你的代碼中的3個圖像中的2個。請重新說明你的問題。 – Cheslab