How to automatically change the space between the letters.I want the text to take up the entire width of the div. Text is not static. (Always changing text, can be 123" or "text text"...)

  <style type="text/css">
    #menu{
      width: 200px;
      background-color: #000;
      color: #336699;
      font-size: 16px;
      letter-spacing: 100%;
    }
  </style>
<body>
<div id="menu">
  tekstas
</div>
link|improve this question

63% accept rate
3  
No disrespect meant towards JamWaffles, but seriously, how does an answer that is (initially) incorrect and doesn't even come close to a solution gets both accepted and 5 upvotes ?! Sheesh ... – FreekOne Dec 4 '10 at 15:32
feedback

2 Answers

up vote 6 down vote accepted

EDIT: Unfortunately this only changes word spacing, not letter spacing. There is not way to do kerning in CSS. Possibly CSS3, however.

This is easily accomplished with the text-align: justify CSS attribute:

#menu 
{ 
      width: 200px; 
      background-color: #000; 
      color: #336699; 
      font-size: 16px; 
      text-align: justify; 
}

Hope this helps,

James

link|improve this answer
justify takes care of word spacing not letter spacing – Paniyar Dec 2 '10 at 11:02
Ooops! My apologies there. I was a little hasty with my reply >slap< – JamWaffles Dec 2 '10 at 11:04
Also, it only affects rows that are followed by another row. – FreekOne Dec 2 '10 at 11:05
feedback

There is no way of doing this purely with CSS. The letter-spacing attribute doesn't take percent values. text-align: justify won't work either because it only affects the space between words, not the font kerning and it also only applies to those rows of text that are followed by another row.

You could try using JS to do this by counting the number of characters in a particular div and then calculate the needed space between the characters so it would fill out the width, but this solution would only work right with mono-spaced fonts (fonts that have the same width for all the characters).

link|improve this answer
Would letter-spacing work with pixel values? (ie. the width of the div if it's fixed?) – JamWaffles Dec 2 '10 at 11:05
Yes, letter-spacing does work with pixel values, but it will simply add the declared value between the characters, or substract it, if a negative value is given. – FreekOne Dec 2 '10 at 11:07
feedback

Your Answer

 
or
required, but never shown

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