Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialErmin Mekic
1,063 PointsHow to figure out the default font-size?
What if I don't set any specific font-size for a heading, how do I find out what the relative margin to the heading is? Is there a default font-size for h1, h2, h3, etc.?
Thank you.
2 Answers
Steven Parker
231,236 PointsThe actual size depends on the browser and/or CSS, but here are some approximations:
H1 32px
H2 24px
H3 18px
H4 16px (also plain inline text)
H5 13px
H6 10px
reginabattle
16,646 PointsIt depends on the browser, but inspecting the element using developer tools can be helpful.
hungryfr33lanc3r
9,206 Pointshungryfr33lanc3r
9,206 PointsHello, Ermin! If you do not set a font-size, 16px is the default that the browser will implent.
Read more here...