Div背景高度100%(封面)

时间:2015-04-14 14:46:50

标签: image background

如何设置一个高度为背景图像的div(作为封面)?

 .index-image-content{
 background: ##00aa77;
 background-image: url("../images/zenbg-1.png"), url("../images/zenbg-2.png");
 background-repeat: repeat-x, repeat;
 width:100%;
 height:auto;
 padding-top:20px;
 padding-bottom: 20px;
 color:#fff;

}

提前致谢!!

2 个答案:

答案 0 :(得分:0)

只需将它们添加到您的班级

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;

source

答案 1 :(得分:0)

这应该正常工作

.index-image-content{

 background-image: url("../images/zenbg-1.png"), url("../images/zenbg-2.png");
 background-repeat: no-repeat;
 background-size: cover;

}