Created
February 24, 2021 07:55
-
-
Save Myllaume/eebb8f52257fe11a4864e8f9190ddb21 to your computer and use it in GitHub Desktop.
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
body { | |
counter-reset: hFirst; | |
} | |
h1 { | |
counter-increment: hFirst; | |
counter-reset: hSecond; | |
} | |
h2 { | |
counter-increment: hSecond; | |
counter-reset: hThird; | |
} | |
h3 { | |
counter-increment: hThird; | |
counter-reset: hFourth; | |
} | |
h4 { | |
counter-increment: hFourth; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment