Reputation: 1026
I wanted to move the image to center but not sure no matter how it just wouldn't happen.
I have a "container-fluid"
, then wrapped with "row"
and "col-md-12"
even tried with padding:0
and it still doesn't display properly.
Appreciated for any comments.
Upvotes: 0
Views: 47
Reputation: 668
Try using Bootstrap's text-center class.
<div class="row">
<div class="col-xs-12 col-sm-12 ... text-center">
<img ... />
</div>
</div>
Upvotes: 1
Reputation: 234
You have to add to div this code :
<div class = " col-md-12 col-sm-12 col-xs-12"
col-md-12 - for dekstop col-sm-12 - for tablets col-xs-12 - for phones
and margin: 0 auto
isn't work.
Upvotes: 1