tags:

views:

109

answers:

5

Is there a CSS code that changes this text

This is it

to this one

ti si sihT
+1  A: 

Thats not right to left, thats mirroring.

CSS:

direction: rtl;
unicode-bidi:bidi-override;
Fabian
You don't have to use Javascript. There's CSS attribute direction:rtl.
Ondrej Slinták
You're right, but the direction by itself isnt doing the trick, updated my answer.
Fabian
+5  A: 

Try this

.cssClassName { direction:rtl; unicode-bidi:bidi-override; }

EDIT: apply this class to a paragraph tag and you should get the results your looking for.

Rob
+2  A: 

Yes, there is:

.reversed {
   direction: rtl; unicode-bidi: bidi-override;
}
Victor Jalencas
+1  A: 

You can use CSS filter filp (Only supported in IE)

<div style="width: 300; height: 50; font-size: 30pt; font-family: Arial Black; color: red; Filter: FlipH">CSS Tutorials</div>
Brian R. Bondy
+1  A: 

@victor-jalencas gave the answer.

The other thing some people here started talking about is flipping and it is done with replacing the normal text with Unicode flipped equivalents.

Example can be found here: http://www.revfad.com/flip.html

Ivo Sabev
That’s the wrong mirror axis.
Konrad Rudolph