JSFiddle - React, Tailwind, and code Playground

by henser

HTML

<div class="image-container">
    <img class="image" src="http://carrolodex.files.wordpress.com/2012/10/mclaren-p1-concept-car_side_profile.jpg"/>
</div>

CSS

.image-container {
    width: 95px;
    height: 95px;
    background: #000000;
    display: table-cell;
    vertical-align: middle;
}

.image {
    width: 100%;
}