Created
May 31, 2025 19:17
-
-
Save pongo/6bef8a72a8ab72ed4b2039447e2c5c33 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
ol { | |
padding-inline-start: 0; | |
list-style: none; | |
counter-reset: my-counter; | |
display: grid; | |
grid-template-columns: auto 1fr; | |
row-gap: 0.5rem; | |
} | |
ol li { | |
display: contents; | |
} | |
ol li::before { | |
counter-increment: my-counter; | |
content: counter(my-counter) "."; | |
display: inline-block; | |
text-align: end; | |
padding-inline-end: 5px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment