Hi, I'm trying to align some text vertically. It's not working. Here's my code:
Code:
<html>
<head>
<style type="text/css">
div.container
{
display: table-cell;
vertical-align: middle;
background-color: red;
color: chartreuse;
height: 100%;
}
</style>
</head>
<body>
<div class="container">
Hell World.
</div>
</body>
</html>
If I change the height of the "container" div to a percent or em value it works great (the text is centered), but it doesn't work with percents.
Thanks for the help,
Nathan
|