Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Text: right to left (CSS)

Is there a CSS code that changes this text

This is it

to this one

ti si sihT
like image 633
ilhan Avatar asked Apr 01 '10 14:04

ilhan


2 Answers

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.

like image 140
Robin Avatar answered Sep 23 '22 18:09

Robin


Yes, there is:

.reversed {
   direction: rtl; unicode-bidi: bidi-override;
}
like image 35
Victor Jalencas Avatar answered Sep 25 '22 18:09

Victor Jalencas