JSFiddle - React, Tailwind, and code Playground

by taneleero

HTML

<div> 
    <span><img src="http://lorempixel.com/200/200/"></span>
</div>

CSS

div {
    height:150px;
    width:150px;
    overflow:hidden;
    position:relative;
}

span {
    position:absolute;
    left:-50%;
    top:-50;
    height:0px;
    width:0px;
}

img {
    padding-left:50%;
}