Is there a CSS code that changes this text

This is it

to this one

ti si sihT
link|improve this question

feedback

5 Answers

up vote 9 down vote accepted

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.

link|improve this answer
Excellent, 100% correct. – YumYumYum Jan 4 '11 at 13:46
feedback

Yes, there is:

.reversed {
   direction: rtl; unicode-bidi: bidi-override;
}
link|improve this answer
feedback

Thats not right to left, thats mirroring.

CSS:

direction: rtl;
unicode-bidi:bidi-override;
link|improve this answer
You don't have to use Javascript. There's CSS attribute direction:rtl. – Ondrej Slinták Apr 1 '10 at 14:18
You're right, but the direction by itself isnt doing the trick, updated my answer. – Fabian Apr 1 '10 at 14:19
feedback

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>
link|improve this answer
feedback

@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

link|improve this answer
That’s the wrong mirror axis. – Konrad Rudolph Apr 1 '10 at 14:22
feedback

Your Answer

 
or
required, but never shown

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