JSFiddle - React, Tailwind, and code Playground

by treeface

HTML

<div id="test">
    <img src="http://ycombinator.com/images/y18.gif" />
</div>

CSS

#test {
    position:relative;
    margin-left:50px;
    margin-top:50px;
    border:1px solid black;
    height:50px;
    width:50px;
    overflow-x:visible;
    overflow-y:hidden;
}
img {
    position:absolute;
    left:-11px;
}