JSFiddle - React, Tailwind, and code Playground

by charlescarver

HTML

<div class="container">
    <div class="item" style="background:url(http://placekitten.com/1000/200)"></div>
</div>

CSS

.container{
    height:300px;
}
.item{
    height:100%;
    background-repeat:no-repeat;
    background-size:contain;
}