3
Is there any way to rotate a text, to look like the image?
Researching, I saw that you have the transform: rotate(10deg);
, would like to know if it is functional for the IE8, or if already another alternative.
3
Is there any way to rotate a text, to look like the image?
Researching, I saw that you have the transform: rotate(10deg);
, would like to know if it is functional for the IE8, or if already another alternative.
1
The Rotate property does not work in IE8
http://caniuse.com/#feat=transforms2d
To work in IE8 have some schemes using filter, I think this topic solves your problem: https://stackoverflow.com/questions/4617220/css-rotate-property-in-ie
Browser other questions tagged css
You are not signed in. Login or sign up in order to post.
And for the other browsers, it’s
rotate
even?– Felipe Viero Goulart
Aham, the old ones that are problematic, it’s always nice to look at this caniuse.com, it even shows the "Known issues" of the property you want to use.
– haykou
Perfect, I think I’ll use an image anyway, so there’s no problem.
– Felipe Viero Goulart