In IE7 +, you can use the DX conversion:
writing-mode: tb-rl; filter: flipv fliph;
In older IE (for poor souls still stuck):
filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
In Safari / Chrome (on any website) you can use the conversion:
-webkit-transform: rotate(270deg);
Recent FX builds have the equivalent:
-moz-transform: rotate(270deg);
But this is not the main one.
I am trying to do this with graphic text, but with a few problems .
Keith source share