JSFiddle - React, Tailwind, and code Playground
by telizpablo
HTML
<div class="thumbnail">
<img src="http://2.bp.blogspot.com/-PEhXmBUGSX4/Vdtsc4agoRI/AAAAAAAAE-o/QPAoYbND3vo/s640/IMG_4571.JPG" alt="Image" />
</div>
<div class="thumbnail">
<img src="http://2.bp.blogspot.com/-PEhXmBUGSX4/Vdtsc4agoRI/AAAAAAAAE-o/QPAoYbND3vo/s640/IMG_4571.JPG" class="portrait" alt="Image" />
</div>
CSS
.thumbnail {
position: relative;
width: 200px;
height: 200px;
overflow: hidden;
}
.thumbnail img {
position: absolute;
left: 50%;
top: 50%;
height: 100%;
width: auto;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.thumbnail img.portrait {
width: 100%;
height: auto;
}