這是我fiddle背景圖像出現在屏幕的100%,在桌面上,但無法在手機上
看到這個screenshot from my desktop
現在看到this screenshot from my mobile device
圖像將始終覆蓋整個屏幕的臺式機,在任何大小的窗口。
但是在手機上,它並沒有覆蓋整個屏幕,爲什麼?
代碼
<h1>Hello</h1>
CSS:
body {
margin: 0px; /* Background Image Margin will be 0 */
background-image: url('http://i.imgur.com/lKW3jvz.jpg'); /* Background Image Linki */
background-repeat: no-repeat; /* Background Image Will not repeat */
background-attachment: fixed; /* Background Image will stay fixed */
background-size: cover; /* This will make background image width 100% and height 100% */
}
的可能的複製[如何使背景圖像覆蓋在手機的整個屏幕(https://stackoverflow.com/questions/44601787/how-製作背景圖像覆蓋整個移動屏幕) –