We want to make the text-alignment stretch the lines and make the width equal but from the right side in a InlineCssTextArea
(from RichTextFX).
I have used:
-fx-text-alignment:justify;
Also what I need to make it work?
We want to make the text-alignment stretch the lines and make the width equal but from the right side in a InlineCssTextArea
(from RichTextFX).
I have used:
-fx-text-alignment:justify;
Also what I need to make it work?
Do you want something like this?
.text-justify-right {
text-align: justify;
direction:rtl;
}
<div class="text-justify-right">text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text .</div>
Here is a runnable example with the result output you wanted I did this by setting the node orientation to right to left