eozzy
eozzy

Reputation: 68650

Vertical Text with CSS

Can I rotate text to be shown vertically using CSS in all browsers back to IE6? For example I need 'WORD' rotated 90 deg left so that 'W' is at the bottom and 'D' at the top.

Thanks in advance.

Upvotes: 2

Views: 368

Answers (1)

user113716
user113716

Reputation: 322452

Specifically for IE, try this:

#myText {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}

http://msdn.microsoft.com/en-us/library/ms532918(VS.85).aspx

I'm sorry, but I can't get to IE right now to test versions, but I'm pretty sure it is supported back to IE6.

Upvotes: 2

Related Questions