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; }