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
I think you can achieve that if you set fixed width of the element-container and play with padding properties.
Somewhat of a workaround, but you can use non-breaking spaces for the last few words:
<p>Here is some really long label that ends on two lines</p>
Adobe has proposed that a new css property be added text-wrap: balance
.
In the meantime they have created a jQuery plugin named balance-text to achieve the same result.
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.