Skip to content

Instantly share code, notes, and snippets.

@jstn
Created February 17, 2009 21:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jstn/65987 to your computer and use it in GitHub Desktop.
Save jstn/65987 to your computer and use it in GitHub Desktop.
<!--
vertically centered table cell
-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Vertically Centered</title>
<meta name="warning" content="HC SVNT DRACONES" />
<style type="text/css">
body, table, tr, td { margin: 0; padding: 0; }
</style>
</head>
<body>
<table height="100%" width="100%">
<tr>
<td align="center" valign="middle">
this is vertically centered
</td>
</tr>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment