Struggling with centering an image horizontally in a responsive manner while using Bootstrap v3.3.5? Here's my code:
<div class="container">
<div style="margin:0 auto;">
<img src="images/logo.png" alt="logo" />
</div>
</div>
I attempted to tweak the inline CSS with
margin-left: auto; margin-right: auto;
But alas, no luck. Tried searching for .center-block and .img-responsive, but couldn't find them in my bootstrap.css file. Feeling quite stuck at the moment.