How to rotate the text?

how can I rotate the text 90 degrees, which is supported in both FF and IE (6,7,8)?

+3
source share
2 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 read link: http://snook.ca/archives/html_and_css/css-text-rotation

+7
source

Here's an article on how to do this to support all modern browsers

Other articles here:

+2
source

Source: https://habr.com/ru/post/1772510/


All Articles