JSFiddle - React, Tailwind, and code Playground

by gothic

HTML

<div>
    <img src="http://fleurer-lee.com/lyah/img/pattern.png" alt="">
</div>

CSS

div {
     width: 100px;
    height: 50px;
    margin: auto;
    background:red;
    overflow:hidden;
}
img {
    display:block;
    margin: 0 auto;
    width: 100%;
    height: 50px;

    
}