I would like to align the div child inside the parent div ( header-image as the background image), centered vertically and horizontally below.
<div id="header-image"> <div class="row"> ... Content </div> </div>
I found a solution for horizontal centering:
<div style="position: absolute; left: 50%;"> <div style="position: relative; left: -50%;"> ... content </div> </div>
But I donβt know how to get content from below (only works with position:absolute )
For a better understanding of http://webstopp.de/ you can see the header-image and some text in it, but the text should be at the bottom of the header-image div .
source share