Skip to content

Instantly share code, notes, and snippets.

@Scemist
Created January 11, 2023 14:13
Show Gist options
  • Save Scemist/2066ac1dc9c5b1fb04cd4e0b9ab3e3b6 to your computer and use it in GitHub Desktop.
Save Scemist/2066ac1dc9c5b1fb04cd4e0b9ab3e3b6 to your computer and use it in GitHub Desktop.
CSS Standard Font Size for Printing in pt

pt is the best css unit for printing

  • p - 10pt
  • h1 - 16pt
  • h2 - 14pt
  • h3 - 12pt
  • h4 - 10pt
  • h5 - 8pt

In css

p { font-size: 10pt }
h1 { font-size: 16pt }
h2 { font-size: 14pt }
h3 { font-size: 12pt }
h4 { font-size: 10pt }
h5 { font-size: 8pt }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment