JSFiddle - React, Tailwind, and code Playground
HTML
<div class="hintergrund">
<h1>Ăśberschrift</h1>
</div>
<p>Was auch immer hier hin soll</p>
CSS
.hintergrund {
background: url(http://wallnoy.com/wp-content/uploads/2014/09/cool_tumbler_background.jpg) no-repeat center center fixed;
background-size: cover;
width: 100%;
height: 100px;
text-align: center;
}
.hintergrund h1 {
color: #ffffff;
line-height: 100px;
}
p {
margin-top: 20px; /* Der Abstand zum Bild */
}