<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "
http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="content-type" content="text/html; charset=iso-8859-1"><title>Ingen titel</title>
<style type="text/css">
html,body {margin:0;padding:0;height:100%;}
#contain {width:100%;height:100%;}
#container {margin:0 auto;width:200px;height:100px;border:1px solid #000;}
</style>
</head><body>
<table id="contain"><tbody><tr><td>
<div id="container">Bla. Bla.</div>
</td></tr></tbody></table>
</body></html>
Eller "deadcenter" - anbefales ikke hvis vinduet
måske kan være mindre end selve container div'en.
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "
http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="content-type" content="text/html; charset=iso-8859-1"><title>Ingen titel</title>
<style type="text/css">
#container {position:absolute;top:50%;left:50%;width:200px;height:100px;margin: -50px 0 0 -100px;border:1px solid #000;}
</style>
</head><body>
<div id="container">Bla. Bla.</div>
</body></html>
(anbefaler selv tabellen)