Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to do what the title says. I've seen that font-size can be a percentage. So my guess was that font-size: 100%; would do it, but no.

Here is an example: http://jsfiddle.net/xVB3t/

Can I get some help please?

(If is necesary to do it programatically with js there is no problem)

share|improve this question
2  
Thanks. Here it is for anyone who'd like to see it: jsfiddle.net/xVB3t/2 – Diego Dec 10 '10 at 13:06
1  
thank you very much fot sharing the solved problem, that is really helpful and is how things should be done +1! – Trufa Dec 10 '10 at 13:57

2 Answers

up vote 4 down vote accepted

This question might help you out I warn you hough this solves it through jQuery:

Auto-size dynamic text to fill fixed size container.

Good luck.

The OP of that question made a plugin, here is the link to it (& download)

BTW I'm suggesting jQuery because as Gaby pointed out this cant be done though CSS only and you said you were willing to use js...

share|improve this answer
I did a summery of that answer actually here: stackoverflow.com/questions/4371003/… – Trufa Dec 10 '10 at 12:57

Can't be done with CSS.

100% is in relation to the computed font-size of the parent element.

reference: http://www.w3.org/TR/CSS2/fonts.html#font-size-props

For a jQuery solution look at Auto-size dynamic text to fill fixed size container.

share|improve this answer
Thanks @Gaby, now I understand the font-size with percentage :). But still looking for an answer. – Diego Dec 10 '10 at 12:54
@Diego, updated answer with a link to another answer in SO. @Akinator posted it as well. – Gaby aka G. Petrioli Dec 10 '10 at 12:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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