Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Text rotation with google chrome using css

Tags:

css

transform

I gave definition for the class to display the text vertically, but it wont works with chrome!

Here with i attached the image

enter image description here

like image 684
fidel castro Avatar asked Jan 11 '23 21:01

fidel castro


1 Answers

You might try the following CSS:

{
    transform:rotate(7deg);
    -ms-transform:rotate(90deg); /* IE 9 */
    -moz-transform:rotate(90deg); /* Firefox */
    -webkit-transform:rotate(90deg); /* Safari and Chrome */
    -o-transform:rotate(90deg); /* Opera */
}

I have a demo from a while back that may be of use to you also - http://codepen.io/lukeocom/pen/mHnvl

like image 87
lukeocom Avatar answered Jan 19 '23 20:01

lukeocom