I have the following code for the header. The image is not centered when I change to different sizes. How can I center the image for all size views.
<div class="jumbotron">
<img src="images/header.jpg" alt="Banner" class="img-responsive">
</div>
You can use with this changes on your css file :
Or this, more specific (I prefer) :
If I'm not wrong, what you want to do here is make the image centered in the middle of your
.jumbotron
. For this, you can use CSS Flexbox:This will center the
img
in the exact center of the.jumbotron
, both horizontally and vertically.Cheers!