<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">
</div> </td> </tr> </table></body></html>