What i want to do is something like this:

1 2 3 4 5
6       7
8 9 10 11

With this code:

<div style="text-align: justify;">
1 2 3 4 5
<br>
6 7
<br>
8 9 10 11
</div>

But it doesn't work, and displays like this:

1 2 3 4 5
6 7
8 9 10 11
link|improve this question

80% accept rate
feedback

4 Answers

up vote 2 down vote accepted

In DTP and word processing applications, this option is known as 'force justify'. Unfortunately, this is not an option in CSS.

link|improve this answer
feedback

Justify only takes up the complete line when the text wraps to the next line. If you want it to wrap you need a narrower div width, and you need to remove your <br />'s

You could start with soemthing like this though: (just not sure how to place the 7 at the same place as the 5 and the 11

<div style="text-align: justify;">
1 2 3 4 5
<br>
<span style="text:align:left;">6</span>
<span style="float:right;">7</span>
<bR>
8 9 10 11
</div>
link|improve this answer
feedback

Another option albeit a little ugly with the &nbsp;.

Live Demo

<div style="width:60px;text-align: justify;">
    1 2 3 4 5 6 &nbsp; &nbsp; &nbsp; &nbsp; 7 8 9 10 11
</div>

Another Options without the nbsp;

<div style="width:60px;text-align: justify;">
    1 2 3 4 5 6 <span style="width:30px; display:inline-block;"></span> 7 8 9 10 11
</div>
link|improve this answer
But this is a ugly trick to add no-break-spaces. isnt it? – PsyCoder Jun 1 '11 at 17:23
1  
:P yeah thats why I put the caveat about it, but I don't know what the OP is ultimately doing, if hes just doing this the one time I think the &nbsp; is less ugly than some random line breaks and extra markup. – Loktar Jun 1 '11 at 17:25
exactly, this is the fact that stopped me from answering this question. – PsyCoder Jun 1 '11 at 17:26
feedback

Here is some more tricks to play around to get your solution:

<pre><div>1 2 3 4<br/>4     6<br/>7 8 9 0</div></pre>

See the demo here

link|improve this answer
Sometimes i will need to have 8 characters fill the same as 9 characters and then this doesn't work! – Tyilo Jun 1 '11 at 21:39
Show me the example please. – PsyCoder Jun 2 '11 at 3:43
I want to have a line with 123456789 fill the same as abcdefgh – Tyilo Jun 2 '11 at 9:30
This cant be possible because justification of text is done by varying the width of the blank spaces. Now as the matter of fact, you cannot force justify a text like 123456789 into a space fitting like abcdefgh. BTW, why do you want this to do? Is it so important? – PsyCoder Jun 2 '11 at 9:36
Please ignore this – Tyilo Jun 3 '11 at 8:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.