如何使背景与css中的div大小相同

时间:2013-07-29 03:30:27

标签: css web web-deployment

我正在开发一个网站,我需要知道如何使背景与css中的div大小相同..我正在尝试使BG尺寸自动但它不起作用>那么任何人都知道解决方案 !!

由于

2 个答案:

答案 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;
    }