Browser compatibility in vertical text
I want to below vertical text
I use:
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
but it does not not work in IE 5 nor 6.
Another code I use:
writing-mode: tb-rl;
filter:开发者_开发技巧 flipv fliph;
But it does not work in Firefox
How can I resolve this problem?
Plenty of solutions here in an alternative thread : How can I draw vertical text with CSS cross-browser?
精彩评论