JSFiddle - React, Tailwind, and code Playground
HTML
<div class="small"></div>
<div class="med"></div>
<div class="large"></div>
CSS
div{
background: url('http://thecharlesnyc.com/images/examples/bloomberg-thumb.jpg') no-repeat center center;
background-size: cover !important;
}
.small{
height: 150px;
width: 150px;
}
.med{
height: 250px;
width: 250px;
}
.large {
height: 500px;
width: 500px;
}