开发者

Vertical Text with CSS

开发者 https://www.devze.com 2023-01-07 17:27 出处:网络
Can I rotate text to be shown vertically using CSS in all browsers b开发者_如何学Pythonack to IE6? For example I need \'WORD\' rotated 90 deg left so that \'W\' is at the bottom and \'D\' at the top.

Can I rotate text to be shown vertically using CSS in all browsers b开发者_如何学Pythonack 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.


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消