我正在开发一个网站,我需要知道如何使背景与css中的div大小相同..我正在尝试使BG尺寸自动但它不起作用>那么任何人都知道解决方案 !!
由于
答案 0 :(得分:1)
尝试:
{
background: url(bgimage.jpg) no-repeat;
background-size: 100%;
}
答案 1 :(得分:1)
#header {
background: url(images/bg.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}