Skip to content

Instantly share code, notes, and snippets.

@tadassce
Created November 24, 2015 14:09
Show Gist options
  • Save tadassce/c353ae1eeb4c680569e4 to your computer and use it in GitHub Desktop.
Save tadassce/c353ae1eeb4c680569e4 to your computer and use it in GitHub Desktop.
<style>
li {
list-style-position: inside;
}
li:nth-child(3n), li:nth-child(5n) {
list-style-type: none;
}
li:nth-child(3n):before {
content: 'Fizz';
}
li:nth-child(5n):after {
content: 'Buzz';
}
</style>
<ol>
<li></li><li></li><li></li><li></li><li></li>
<li></li><li></li><li></li><li></li><li></li>
<li></li><li></li><li></li><li></li><li></li>
<li></li><li></li><li></li><li></li><li></li>
<li></li><li></li><li></li><li></li><li></li>
<li></li><li></li><li></li><li></li><li></li>
<li></li><li></li><li></li><li></li><li></li>
</ol>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment