DEV Community

Cover image for H3 Font Size
ProgrammerMoney
ProgrammerMoney

Posted on • Updated on

H3 Font Size

TL;DR Summary

Checking the h3 font size in the browser's inspect code we get that default size is 1.17em.

h3 font size

But how much is that in pixels? According one of many tools you can find online we get the number 18.72px

em to pixels

Of course if you wanted to change the default h3 font size you can do it easily in CSS:

h3 {
  font-size: 30px;
}
Enter fullscreen mode Exit fullscreen mode

And that's it.

Until next time,
Will
Senior Developer & SEO Algo Specialist

Top comments (0)