html { font-size: 62.5%; }
body { font-size: 1.4rem; } /* =14px */
h1 { font-size: 2.4rem; } /* =24px */
Hey guys, I am trying to work out the calculation.
How do we get 14px for body and 24px for h1?
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.
When
htmlis given a font size as a percentage, it is calculated based on the font size preference set by the user in their browser options. This is usually 16px as a “standard” across browsers, but of course it may vary based on the user’s own settings.62.5% of 16px is 10px, giving
htmlan absolute font size of 10px. From there, it should be easy to work out the sizes forbodyandh1.