我想让一张图片成为网站的完整背景!我知道这听起来很简单,但它让我发疯了,它不适合页面,这是我最后一次尝试!
CSS:
body {
background:url('images/bg_img1.jpg') #A98436 no-repeat left top;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
}
我也在使用 Twitter Bootstrap,但即使没有它,我也无法正确使用它!
任何帮助,将不胜感激。
编辑:我没有使用精确的像素,因为我正在尝试制作响应式 + 移动设计。
我不知道他们为什么拒绝这个问题!但这就是我解决它的方法!
html, body {
margin: 0;
padding: 0;
height: 100%;
}
#mybody {
background: url('images/bodybg.jpg') no-repeat center left;
background-size: 100% 100%;
width: 100%;
height: 100%;
height: auto !important;
min-height:100%;
}
#myheader {
background: url('images/headerbg.jpg') no-repeat center left;
background-size: 100% 100%;
width: 100%;
height: 100%;
height: auto !important;
min-height:100%;
}
#myfooter {
background: url('images/footerbg.jpg') no-repeat center left;
background-size: 100% 100%;
width: 100%;
height: 100%;
height: auto !important;
min-height:100%;
}