Skip to content

Instantly share code, notes, and snippets.

@grabcode
Created April 8, 2015 05:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save grabcode/bc5a1c3c092088f3330e to your computer and use it in GitHub Desktop.
Save grabcode/bc5a1c3c092088f3330e to your computer and use it in GitHub Desktop.
CSS Counter
.custom-counter{
list-style-type: none;
&>li{
counter-increment: step-counter;
&:before{
content: counter(step-counter);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment