Created
August 4, 2023 16:34
-
-
Save KHCode/d972a36886dcbd8b879a17cd69ecd117 to your computer and use it in GitHub Desktop.
Default Heading Tag Font Sizes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Heading tags are set with em units */ | |
/* Most modern browsers set 1em equal to 16px */ | |
/* Feel free to copy this file to customize your heading tags */ | |
h1 { | |
font-size: 2em; /* 32px */ | |
} | |
h2 { | |
font-size: 1.5em; /* 24px */ | |
} | |
h3 { | |
font-size: 1.17em; /* 18.72px */ | |
} | |
h4 { | |
font-size: 1em; /* 16px */ | |
} | |
h5 { | |
font-size: 0.83em; /* 13.28px */ | |
} | |
h6 { | |
font-size: 0.67em; /* 10.72px */ | |
} | |
/* h1 | 2em | 32px | |
h2 | 1.5em | 24px | |
h3 | 1.17em | 18.72px | |
h4 | 1em | 16px | |
h5 | 0.83em | 13.28px | |
h6 | 0.67em | 10.72px */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment