我试图弄清楚如何在 div 全宽和响应式中制作背景图像。背景图像在页面的宽度上扩展(并且是响应式的),但图像的高度不是它的全高。好像不知何故被切断了。我正在使用引导框架,我尝试这样做的原因是我想在图像上覆盖一些文本。我尝试了很多不同的东西,但似乎无法弄清楚,求助!
<div class="bg-image">
<div class="container">
<div class="row-fluid">
<div class="span12">
<h1>This is some text</h1>
</div>
</div>
</div>
</div>
.bg-image {
background: url(img/image.jpg) no-repeat center top;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
max-height: 450px;
}