Reputation: 13637
By using Bootstrap, I designed a page as follows:
Now, I'd like to:
.img-resposive
as class);.jumbotron
size.To be clear, the desired result is shown below:
How can I do that?
Regards, V.
Upvotes: 0
Views: 2552
Reputation: 8189
Use negative margins on a wrapper for this image :
.img-responsive-parent {
margin: 0 -60px;
}
And html :
<div class="img-responsive-parent">
<img class="img-responsive" />
</div>
Upvotes: 3