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.
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.
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.