Possible Duplicate:
What does this CSS shorthand font syntax mean?
I saw many people doing that:
body {
font: bold 12px/13px Arial, Helvetica, sans-serif;
}
What is this 12px/13px for?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
12px is the font size and 13px the line height.
Example of declaring all font properties in a one liner here.
All this being said, I’ll just add that this is a pretty unusual way of writing it and I wouldn’t recommend it since it might confuse most developers.