Turn Text on Its Side Using CSS
OCT
12
Oct 12, 2009
by
0
I just stumbled onto a neat little trick. I don't know how I haven't seen this before. Apparently you can rotate text using CSS. It is a little hacky, but still cool. With just a couple lines of code you can have you text going every which way.
For Firefox:
-webkit-transform: rotate(-90deg);
-moz-transform: rotate(-90deg);
For IE:
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);