In HTML, is there a way to evenly distribute text that is broken across multiple lines?

E.g., I don't want:

   Here is some really long label that ends up on
   two lines.

I'd prefer:

                  Here is some really long label 
                      that ends up on two lines.
link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

In pure HTML/CSS there isn't a way to accomplish this, because there is no way to measure the length of the line.

One way to do this would be with javascript, but you will end up with a FOBUC while the javascript calculates the line length and splits it accordingly.

The best way to avoid that would be to split the line with PHP/ASP/Whatever you're using.

link|improve this answer
1  
Well, "the best way" is unsound in the face of varying fonts and (probably) limited width. For instance, FireFox has minimum font size option, which would likely screw such setup. – doublep May 25 '10 at 22:07
feedback

I think you can achieve that if you set fixed width of the element-container and play with padding properties.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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