Is there a css property that lets you do the following?
before:
The quick brown fox jumps over the lazy
dog.
after:
The quick brown fox jumps
over the lazy dog.
The idea is that I have a DIV of 320 pixels wide into which text is placed taken from a mysql database.
When the end is reached, the rest of the text is placed on a new line. (the word "lazy" is the last one fitting in the 320px wide box.)
But what I would rather have is that the text is equally divided between the 2 lines.
Is this possible with css?