JSFiddle - React, Tailwind, and code Playground
by Abdul Ahmad
HTML
<div class='img'>
</div>
CSS
html {
height: 100%;
}
body {
margin: 0;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.img {
background-size: cover;
background-image: url(https://www.w3schools.com/w3css/img_lights.jpg);
width: 50%;
max-width: 400px;
min-width: 200px;
height: 50%;
max-height: 400px;
min-height: 200px;
box-sizing: border-box;
border: 1px solid red;
}