JSFiddle - React, Tailwind, and code Playground
HTML
<div class="holder">
<img id="myimage" src="http://i.stack.imgur.com/2OrtT.jpg" />
</div>
CSS
.holder {
width: 150px;
height: 100px;
overflow: hidden;
background-color: #ff0000;
position: relative;
}
#myimage {
height: auto;
width: auto;
max-width: 150px;
position: absolute;
top: -100px;
}