JSFiddle - React, Tailwind, and code Playground

by bertuz

HTML

<div class="square">
    <img src="http://www.ristorantesushizen.com/polopoly_fs/1.9289130.1341219702!/httpImage/img.JPG" alt="">
</div>

CSS

.square{
    width: 150px;
    height: 150px;
    background-color: blue;
    position: relative;
}

.square img{
    max-height: 98%;
    max-width: 98%;
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}