Created
March 20, 2025 11:31
-
-
Save atomjoy/bf73beb919873a8a2699992b943ad4cc to your computer and use it in GitHub Desktop.
CSS Pre code line numbers.
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
/* | |
Line numbers css | |
<pre> | |
<code> | |
<span class="line">Line 1</span> | |
<span class="line">Line 2</span> | |
<span class="line">Line 3</span> | |
</code> | |
</pre> | |
*/ | |
pre { | |
counter-reset: line; | |
} | |
.line { | |
counter-increment: line; | |
} | |
.line:before { | |
content: counter(line); | |
} | |
.line:before { | |
--webkit-user-select: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment