我正在开发一个网站,我需要知道如何使背景与 css 中的 div 大小相同。我正在尝试使 BG 大小自动,但它不起作用> 任何人都知道一个解决方案!
谢谢
我正在开发一个网站,我需要知道如何使背景与 css 中的 div 大小相同。我正在尝试使 BG 大小自动,但它不起作用> 任何人都知道一个解决方案!
谢谢
#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;
}
尝试:
{
background: url(bgimage.jpg) no-repeat;
background-size: 100%;
}