Search code examples
htmlcsslayout

Text-align justify but to the right?


We want to make text-align:justify, to take all the width of the column, but it should start from the right side. Is there any way to make it with css or somehow?.

EDIT:

As suggested http://jsfiddle.net/dVbJr/33/

.text {
  text-align: justify;
  direction:rtl;
}

works, but it has punctuation issue.

SOLVED

    <span style="float:right">...</span>

This to be attached in the end has solved the punctuation issue. Thanks for effort though to everyone! I shall accept the first answer then.


Solution

  • I believe you might want something like this:

    direction:rtl;
    text-align:justify;
    

    Example: http://jsfiddle.net/aew75/