Using CSS to center text vertically and horizontally

code.<html>
<head>
<style>
.divContainer {
display: table;
width: 100%;
height: 100%;
}
.divCenteredObject {
display: table-cell;
vertical-align: middle;
text-align: center;
}
</style>
</head>
<body>
<div class="divContainer">
<div class="divCenteredObject">
<h1>This text is centered, both vertically and horizontally.</h1>
</div>
</div>
</body>
</html>
code..

 #css - #howto