JSFiddle - React, Tailwind, and code Playground
HTML
<div class="banner_holder">
<div class="banner_holderImage"> </div>
</div>
CSS
.banner_holder{
width: 100%;
height: 300px;
min-height: 200px;
position: relative;
outline:1px dotted red;
}
.banner_holderImage{
height: 100%;
position:relative;
background: url("http://placekitten.com/g/800/600")no-repeat;
background-size: cover;
background-position: center;
}