Is it possible to change the div's font-size depending on how many characters are in it? I have image album titles in small fixed width div's (100px). Sometimes the album names have too many characters that they force a new line. So I was wondering if it is possible to re-size the font to keep the title on one line?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Yes, by assigning a variable to a style tag:

<?php
$random_number = '42';
if(strlen($div_string)>$random_number){
    $font_size = '10pt';
}else{
    $font_size = '14pt';
}?>
<div style="font_size:<?php echo $font_size; ?>">
    <?php echo $div_string; ?>
</div>
link|improve this answer
To ensure that you'll get a "safe" size in most cases, be sure to base $random_number on the number of, say, M's that will fit within 100 pixels (as opposed to, say, i's ;-)). There are ways to do stuff like this accurately using javascript (iterate over font-sizes in a hidden div and measure its resulting width), but it's rather unseemly. – TheKaneda Jan 28 at 13:22
feedback

There is not a css way to do it you can use javascript or text-overflow in css3

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.