Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Problem is this,

<p>Hi world</p>

LTR:

Hi world

RTL:

world Hi

I am not able get this RTL display is not using css.

I tried these css properties now.

direction: rtl;
unicode-bidi: embed || normal; //same effect, nothing changes.
unicode-bidi: bidi-override; //each letter comes from r-t-l. Like: dlrow iH
text-align: right;

Is there anyway to get the text to world Hi form using css.

Thanks

share|improve this question

3 Answers

up vote 4 down vote accepted

No, it’s not possible, and directionality is not meant to be used for operations like this.

The direction property, as well as its HTML counterpart the dir attribute, sets the directionality of directionally neutral text. It does not affect strings that have strong inherent directionality, even if neutral characters like spaces intervene. The value bidi-override means what it says, it simply forces a single writing direction.

You would need to work on the words too, and since CSS has no pseudoelements that could be used here, you would need to use real elements, markup like

<p><span class=w>Hi</span> <span class=w>world</span></p>

Then you can use different directionality settings for entire element and the individual words:

span { unicode-bidi: embed;}
p { unicode-bidi: bidi-override; direction: rtl;  text-align: left; }   
share|improve this answer

I always thought that the reading direction was set in the html opening tag, like so:

<html dir="rtl">
share|improve this answer

I think with "rtl" you will get an output like: "dlrow iH"

As you can't detect separate words in CSS, I would recommend to use JavaScript for this problem:

var string = "Hi world";
var array = string.split(" ");
var reversed = array.reverse();
reversed
-> ["world", "Hi"]
share|improve this answer

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.