Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how rotate text?

Tags:

css

how can i rotate text 90 degree which be supported in both FF and IE(6,7,8) ?

like image 360
hd. Avatar asked Jun 23 '26 04:06

hd.


1 Answers

-moz-transform:rotate(-270deg); 
-moz-transform-origin: bottom left;
-webkit-transform: rotate(-270deg);
-webkit-transform-origin: bottom left;
-o-transform: rotate(-270deg);
-o-transform-origin:  bottom left;
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);

Here's a link to read: http://snook.ca/archives/html_and_css/css-text-rotation

like image 91
Alex Rashkov Avatar answered Jun 24 '26 20:06

Alex Rashkov