I am trying to figure out how to center a text vertically next to an image. While I know how to align text horizontally using text-center in bootstrap, I am unsure about how to align it vertically. Is there a way to accomplish this using bootstrap?
<div class="col-md-12 well">
<div class="col-md-3">
<img src="http://placehold.it/100x100"></img>
</div>
<div class="col-md-3">
<div>
This text should be centered vertically
</div>
</div>
</div>
Check out the code on codepen