I am looking for a way to position the <h1>
tag below vertically central inside the absolutely positioned container div. I am aware of display: table
and display: table-cell
, however this does not play well with absolute positioning.
<div class="position--relative">
<div class="position--absolute">
<h1>POSITION THIS TEXT CENTRALLY INSIDE THE CONTAINER</h1>
</div>
</div>
Is there a way I can position this text centrally without using px
units? This is because it will need to stay central on various viewports.