Last active
December 1, 2018 21:16
-
-
Save daliborgogic/1db3c4a8b8653da7f532b86e371d86f3 to your computer and use it in GitHub Desktop.
Line numbers with CSS only
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
<pre> | |
<span>module.exports = async (req, res) => {</span> | |
<span> return</span> | |
<span>}</span> | |
</pre> |
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
pre | |
counter-reset line | |
position relative | |
span | |
&:before | |
left -16px | |
position absolute | |
counter-increment line | |
content counter(line) | |
display inline-block | |
color #999 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment