通过使用 Bootstrap ,我按如下方式设计了一个页面:
现在,我想:
.img-resposive
作为类); .jumbotron
尺寸增加其宽度。需要说明的是,所需的结果如下所示:
我该怎么做?
问候,V。
答案 0 :(得分:2)
在此图片的包装上使用负边距:
.img-responsive-parent {
margin: 0 -60px;
}
和html:
<div class="img-responsive-parent">
<img class="img-responsive" />
</div>