Is it possible to use CSS (CSS3 is okay) to mirror text?
Specifically, I have this scissor char “✂” (✂) that I'd like to display pointing left and not right.
Thanks.
|
|
You can rotate it in CSS using the answer Rito provided, however, the answer differs for IE support.
In IE, rotation = 1 is 90 degrees, 2 is 180, 3 is 270 and 4 is 360. |
|||||||
|
|
Just as a complement for the rest of the answers, a real flip (mirror) would involve scaling the div like this:
The rotate solution works for your specific case, but if you want mirrored text this is the way to go. |
|||
|
|
|
real mirror: css:
|
|||||
|
|
you can use 'transform' to achieve this. http://jsfiddle.net/aRcQ8/ css:
|
|||
|
|
|
Try:
Use it with prefixes:
|
|||||
|