JSFiddle - React, Tailwind, and code Playground

HTML

<div class="container-fluid">
  <div class="row">
    <div class="col-sm-12 text-center bg-green">
      <img class="img-responsive text-center" src="http://placeimg.com/100/100/animals" />
    </div>
  </div>
</div>

CSS

.bg-green{background-color:palegreen;border:1px solid darkgreen;}

JavaScript

/*
	http://is.gd/t34FpJ
  
  The IMG-RESPONSIVE class is preventing the image from centering in the col-sm-12 DIV. 
  
  
http://stackoverflow.com/questions/10088706/twitter-bootstrap-how-to-center-elements-horizontally-or-vertically/34560589#34560589

  
*/