Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.


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.

share|improve this question
If the scissors image for some reason doesn't work out for you, I've seen it faked with %< and >% – Pete Wilson Mar 23 '11 at 14:23

5 Answers

up vote 19 down vote accepted

You can rotate it in CSS using the answer Rito provided, however, the answer differs for IE support.

.rotated{
    -moz-transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2)
}

In IE, rotation = 1 is 90 degrees, 2 is 180, 3 is 270 and 4 is 360.

share|improve this answer
4  
Technically this is not a mirror. its rotated. So it'll only work with some type of elements – borisrorsvort Jan 16 at 16:28
I had some issues in Chrome until I added display: inline-block to my span (using pictos fonts) – Clarence Liu Mar 26 at 21:13

Just as a complement for the rest of the answers, a real flip (mirror) would involve scaling the div like this:

-prefix-transform: scale(-1, 1);

The rotate solution works for your specific case, but if you want mirrored text this is the way to go.

share|improve this answer

real mirror:

css:

.mirror {
    display:block; 
    -moz-transform: matrix(-1, 0, 0, 1, 0, 0);
    -webkit-transform: matrix(-1, 0, 0, 1, 0, 0);
    -o-transform:matrix(-1, 0, 0, 1, 0, 0);
}
share|improve this answer
1  
Yes, Real Mirror – krish Mar 4 at 3:26

you can use 'transform' to achieve this. http://jsfiddle.net/aRcQ8/

css:

-moz-transform: rotate(-180deg);
-webkit-transform: rotate(-180deg);
transform: rotate(-180deg);
share|improve this answer

Try:

Box-reflect; 20px right;

Use it with prefixes:
E.g.:

-webkit-  
-moz-
share|improve this answer
box-reflect is a webkit only property. but i dont think it has a -moz- equivalent.. Check this post.. – mithunsatheesh Jan 2 at 5:06
also separator should be : not ; – mithunsatheesh Jan 2 at 5:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.