答案 0 :(得分:2)
你可以这样做:
<强> FIDDLE 强>
HTML:
<div id="home">... Home Content ...</div>
<div id="content">... Website Content ...</div>
CSS:
html, body, #home {
width:100%;
height:100%;
margin:0;
}
#home {
background: url(http://lorempixel.com/output/nature-q-g-1278-873-9.jpg);
background-position:center center;
background-size:cover;
}
答案 1 :(得分:0)
您可以添加一个高度和页面的高度,并为该div添加背景。
在CSS中:
body, html {
height: 100%;
}
#div_id {
height: 100%;
background-image:url("image.png");
}
这应该有效。