Just change the direction of the text from right to left to direction: rtl;
div { width:50px; background: red; overflow: hidden; white-space: nowrap; direction: rtl; }
WORKING DEMO .
It should be noted that, by changing direction , the exclamation point is Hello World! go left like !Hello world .
To fix this, you can wrap the <bdi> text as follows:
<div> <bdi>Hello World!</bdi> </div>
UPDATED DEMO .
Or use unicode-bidi: isolate for the <span> element (for supported web browsers)
source share