-1
https://dl.dropboxusercontent.com/u/129673910/Sylhetcricket-5/index.html 這是我的網站的網址鏈接。當我把它試圖響應然後背景圖片不能響應Responsive整頁背景圖片
https://dl.dropboxusercontent.com/u/129673910/Sylhetcricket-5/index.html 這是我的網站的網址鏈接。當我把它試圖響應然後背景圖片不能響應Responsive整頁背景圖片
在這裏你去:http://jsfiddle.net/DrabA/1/
不要給特定高度 - 它不會響應,否則。
body {
width:100%;
position: relative;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
background-image:url('https://www.google.com/images/srpr/logo11w.png');
background-repeat: no-repeat;
margin: 0px;
padding: 0px;
}
這是正確的。 –
請投入一些精力來問清楚問題,我們將能夠更好地爲您提供有意義的答案。 –
使用background-size:cover;如果你想用圖像填充窗口 – Adam