I have a div with a fixed width, but the text inside (someones name) will vary. Is there a way of dynamically resizing/letter-spacing the text to fit perfectly in the div?
However, I cannot use javascript as this script will be used in a HTML-PDF converter, which does not read javascript
text-align:justify won't work as if the text is too long for the div, it won't resize it. I find text-align:justify only works for paragraphs etc.
The name cannot go onto two lines
text-align: justifybut I believe that works when there's more than one line. Other than that, probably no way with simply CSS. You can center them, that might be better than leaving them aligned left. – alexcoco May 27 '11 at 13:16