font:100 1.1em/37px Tahoma, Helvetica, Sans-serif;

What does the 100 mean? font-weight? What does the 1.1em mean? line-height? And 37px? font-size?

link|improve this question

67% accept rate
feedback

3 Answers

up vote 1 down vote accepted

You're right on the font weight, but 1.1em/37px means the font size is 1.1 ems and the line height is 37 pixels, not the other way around.

W3C CSS font property reference

link|improve this answer
Can I also specify the font-size in px? and is beeter to write it this way in one line as..if I will write it in more lines? – Uffo Oct 30 '11 at 18:36
@Uffo: Yes, you can use any CSS unit. You can either use the shorthand property or specify each part separately - use whichever you think will help you understand the code easier. – BoltClock Oct 30 '11 at 18:37
feedback

Here is a cool font shorthand cheat sheet which can be found here.

So in your example, 100 is the font-weight, 1.1em is the font-size, and 37px is the line-height.

link|improve this answer
feedback

Its short hand.

http://htmlhelp.com/reference/css/font/#font

Basically its setting the font size, then family.

link|improve this answer
Not just the size and the family. – BoltClock Oct 30 '11 at 18:38
feedback

Your Answer

 
or
required, but never shown

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