Sebastian Becker: Vertikale Schriftausrichtung in einer Tabelle

Beitrag lesen

Hallo, Benjamin,

Ich meine, daß ich es schon mal in CSS gesehen hätte, daß das möglich ist.

Ich hab's schon mal hier gesehen, und zwar mit Microsoft Filtern im Stylesheet:

http://webfx.nu/

Und zwar ging das so:

Skript im HTML-Dokument:

if (ie && document.body.currentStyle && document.body.currentStyle.writingMode != null)
// IE55+
document.write("<div id='webfx-about'>Page designed and maintained by "
+"<a href='mailto:erik@eae.net'>Erik Arvidsson</a> & "
+"<a href='mailto:eae@eae.net'>Emil A Eklund</a>.</div>");

Stylesheet:

#webfx-about {
position: absolute;
background: white;
top: 102px;
right: 10px;
width: 20px;
writing-mode: tb-rl;
filter: flipH() flipV() alpha(opacity=50);
}

Grüße,

Sebastian