【发布时间】:2016-04-21 20:48:54
【问题描述】:
我在所有页面上都有封面。我正在使用 jumbotron 来获得全宽图像。但它在左右两侧留有空间。我添加了margin-left,所以左边的空白空间消失了,但右边的空间仍然存在。此外,当我调整浏览器大小时,右侧有一个非常大的空间。
<div id="cover-success" class="jumbotron">
<div class="container">
<div class="overlay">
<div class="text-center">
<h1>Success Stories</h1>
<h2>Here are some of the many resolved complaints.</h2>
</div>
</div>
</div>
</div>
使用的 CSS:
#cover-success.jumbotron {
background-size: cover;
background-image: url('Images/cover-success-stories.jpg');
position:absolute;
width:100%;
margin-top: -14px;
margin-left: -70px;
margin-right:-50px;
height: 270px;
}
【问题讨论】:
标签: html asp.net twitter-bootstrap