Skip to content

Instantly share code, notes, and snippets.

@tadassce
Created November 24, 2015 12:44
Show Gist options
  • Save tadassce/846c2398f861497aaac8 to your computer and use it in GitHub Desktop.
Save tadassce/846c2398f861497aaac8 to your computer and use it in GitHub Desktop.
<style>
body {
counter-reset: n;
}
div:before {
counter-increment: n;
content: counter(n);
}
div:nth-child(3n):before {
content: "Fizz";
}
div:nth-child(5n):before {
content: "Buzz";
}
div:nth-child(3n):nth-child(5n):before {
content: "FizzBuzz";
}
</style>
<div></div><div></div><div></div><div></div><div></div>
<div></div><div></div><div></div><div></div><div></div>
<div></div><div></div><div></div><div></div><div></div>
<div></div><div></div><div></div><div></div><div></div>
<div></div><div></div><div></div><div></div><div></div>
<div></div><div></div><div></div><div></div><div></div>
<div></div><div></div><div></div><div></div><div></div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment