Skip to content

Instantly share code, notes, and snippets.

@bdunnette
Created December 16, 2014 15:00
Show Gist options
  • Save bdunnette/e1942066e3b718c99e7b to your computer and use it in GitHub Desktop.
Save bdunnette/e1942066e3b718c99e7b to your computer and use it in GitHub Desktop.
CSS to add case numbering to ordered lists
ol {counter-reset: item; list-style-type: none;}
ol li:before {font-weight: bold; content: 'Case ' counter(item, decimal) ': '; counter-increment: item;}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment