dimpie schrieb:
Is it possible to center text vertically in a div in Internet Explorer.
See Bruno Fassino's solution:
http://www.brunildo.org/test/vertmiddle.html
http://www.brunildo.org/test/img_center.html
Ingo
--
http://www.satzansatz.de/css.html
Is it possible to center text vertically in a div in Internet Explorer.
I managed to make it work in FireFox and Opera by applying the following:
div {
display: table-cell;
vertical-align: middle;
}
but I can't get it to work in IE.
Any help would be appreciated.
Thanks in advance.