Yes folks, it's another vertical-alignment question! I'm trying to do something pretty simple with Bootstrap 3, but hitting a wall on it. I'm building on the answer to this related question, but hitting the problem described below.
Here's the markup:
<div class="container">
  <div class="row">
    <div class="col-xs-3 col-sm-3 col-md-3 col-lg-3 vcenter">
      <img src="http://www.vectortemplates.com/raster/batman-logo-big.gif">
    </div>
    <div class="col-xs-3 col-sm-3 col-md-3 col-lg-3 vcenter">
      <img src="http://www.vectortemplates.com/raster/superman-logo-012.png">
    </div>
    <div class="col-xs-3 col-sm-3 col-md-3 col-lg-3 vcenter">
      <img src="http://2.bp.blogspot.com/-91OnmwoX5t0/T8reMB25ReI/AAAAAAAACQQ/D_jlmi6vWTw/s1600/GREEN+LANTERN+LOGO.png">
    </div>
    <div class="col-xs-3 col-sm-3 col-md-3 col-lg-3 vcenter">
      <img src="http://ecx.images-amazon.com/images/I/41biZJowGyL._SY300_.jpg">
    </div>
  </div>
</div>
And the CSS:
.vcenter {
    display: inline-block;
    vertical-align: middle;
    float: none;
}
img {
  max-width:200px;
}
When "float:none;" is included on .vcenter, the images are vertically-aligned as desired. However, the fourth column wraps underneath the other three.
When "float:none;" is commented out, the 4-column layout is achieved, but the images aren't vertically-aligned.
Bootply example so you can see what I mean.
Any idea how to get a four-column layout and vertically-aligned images?
 
     
     
    