<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"> <html> <head> <title>Vertikální centrování</title> <style> .greenBorder {border: 1px solid green;} /* nepodstatný styl */ </style> </head> <body> <div class="greenBorder" style="display: table; height: 400px; _position: relative; overflow: hidden;"> <div style=" _position: absolute; _top: 50%;display: table-cell; vertical-align: middle;"> <div class="greenBorder" style=" _position: relative; _top: -50%"> libovolný prvek<br> libovolné výšky<br> a libovolného obsahu<br> zůstává vertikálně vystředěný </div> </div> </div> </body> </html>
Zdroj: JakPsatWeb.cz
Funguje i s jinými DOCTYPE, vyzkoušeno např. s HTML 4.01 Transitional s loose.dtd.