- var n = 0;
ol
while n < 100
li
- n++
View Compiled
ol {
list-style: decimal 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';
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.