我已经使用 twitter bootstrap 制作了一个网页。我通过 CSS 在背景中插入了一张图片,如下所示。
<div class="container-fluid">
<div class="row-fluid">
<section id="wrapper">
</section>
</div>
</div>
CSS如下:
section#wrapper{
max-width:700px;
background-image:url("img/crane.png");
min-height:525px;
}
当我调整浏览器大小时,图像不会根据屏幕大小调整大小。我不知道如何使它响应。所以请任何人都可以帮我解决这个问题。提前致谢。