JSFiddle - React, Tailwind, and code Playground
HTML
<div id="masthead"> <h1> TITLE </h1> </div>
<div id="content">CONTENT<div>
CSS
body {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 12px;
color: #351F14;
background-color: #E6D0A1;
}
#masthead {
width: 100%;
height: 100px;
position: absolute;
left:0;
top:0;
background-image: url('http://i.imgur.com/imppVS6.jpg'); repeat-x; align-top;');
background-repeat: repeat-x;
border: solid 1px blue;
}
#masthead h1 {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 48px;
color: #F2EBD9;
font-weight: bold;
background-color: #4F3117;
max-width: 401px;
min-height: 62px;
padding-left: 30px;
margin-left: 30px;
position: relative;
bottom: 7px;
}
#content{
position:absolute;
border: 1px solid red;
height:100%;
width:100%;
top:100px;
}