Only 90s Web Developers Remember This 12 years ago
You miss the part of tables. It is until today the only really reliable way to center a div box horizontally and vertically:
<html>
<head>
<title>Vertical Alignment</title>
<style type="text/css">
html, body, bodytable { height: 100%; }
bodytablerow { vertical-align: center; }
bodytablecell { text-align: center; }
content {
text-align: auto;
width: 100px; height: 100px
}
</style>
</head>
<body><table id="bodytable">
<tr id="bodytablerow">
<td id="bodytablecell">
<div id="content">
blabla </div>
</td>
</tr>
</table></body></html>