Reputation: 33
I need some help.
img-responsive doesn't centers with this code.
div.container-main {
margin-left: auto;
margin-right: auto;
text-align: center;
}
Then the HTML code is this one
<div class="container-main">
<section class="main">
<img class="img-responsive" src="img/bio.png" alt="Microscópio Óptico">
</section>
Any help? I've already seen this one but didn't worked for me.
Without img-responsive it's working excellent.
I'm using Bootstrap.
Upvotes: 3
Views: 417
Reputation: 2169
This is a pleasantly easy fix. Because .img-responsive from Bootstrap already sets display: block
, you can use margin: 0 auto
to center the image:
.img-responsive {
margin: 0 auto;
}
Upvotes: 1