Dez 28
There is no vertical-aligment css-attribute in css 2.0. So how to align elements vertically?
1 2 3 4 5 6 7 8 | DIV.container {
min-height: 10em;
display: table-cell;
vertical-align: middle }
...
<DIV class="container">
<P>This small paragraph...
</DIV> |
To align vertically the paragraph P on line 7, you have to use display: table-cell; and vertical-align: middle;
Runs on Mozilla, Safari and IE8 but not IE7
This example is from W3.org. Orginal article can be found here.
