响应整页背景图像

时间:2013-12-22 19:04:10

标签: html css

https://dl.dropboxusercontent.com/u/129673910/Sylhetcricket-5/index.html 这是我的网站网址链接。当我尝试响应时,背景图像无法响应

1 个答案:

答案 0 :(得分:1)

在这里: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;
}