JSFiddle - React, Tailwind, and code Playground
HTML
<div id="background">
</div>
<div id="content">
<p>Your content</p>
</div>
CSS
#content{
width:100%;
height: 800px;
position: absolute;
top: 90%;
background:red;
}
#background{
background-image: url("http://mintdigital.com/assets/new/mint-makers-949b2728da245048513ef4fab5b3c8ac.jpg");
background-size:cover;
height:100%;
width:100%;
position:fixed;
background:blue;
}