Skip to content

Instantly share code, notes, and snippets.

@brookr
Created July 30, 2015 22:02
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 brookr/8a570cbbfcbf54ef5839 to your computer and use it in GitHub Desktop.
Save brookr/8a570cbbfcbf54ef5839 to your computer and use it in GitHub Desktop.
MwzNRy
<html>
<body>
<input type="number" />
<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>
</ol>
</body>
</html>
document.getElementByTagName('input').addEventListener("change", function() {
alert(this.value)
}, false)
ol {
list-style: decimal inside;
}
li:nth-child(3n) {
list-style-type: none;
}
li:nth-child(3n)::before {
content: "fizz"
}
li:nth-child(5n) {
list-style-type: none;
}
li:nth-child(5n)::after {
content: "buzz"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment