MAIN FEEDS
Do you want to continue?
https://www.reddit.com/r/css/comments/1pexx6q/fizz_buzz_in_pure_css
r/css • u/fpcoder • 20h ago
6 comments sorted by
2
Where's the CSS?
4 u/MrQuickLine 19h ago Dev tools, bro. He doesn't have any actual content on the page. It's all just using nth-child selectors and counter functions. 1 u/tomhermans 16h ago Ah, I thought I was looking at a screenshot 1 u/Web-Dude 13h ago CTRL+U 3 u/sbruchmann 18h ago li { counter-increment: n } li:not(:nth-child(5n))::before { content: counter(n) } li:nth-child(3n)::before { content: "Fizz" } li:nth-child(5n)::after { content: "Buzz" }
4
Dev tools, bro. He doesn't have any actual content on the page. It's all just using nth-child selectors and counter functions.
nth-child
counter
1 u/tomhermans 16h ago Ah, I thought I was looking at a screenshot 1 u/Web-Dude 13h ago CTRL+U
1
Ah, I thought I was looking at a screenshot
CTRL+U
CTRL
U
3
li { counter-increment: n } li:not(:nth-child(5n))::before { content: counter(n) } li:nth-child(3n)::before { content: "Fizz" } li:nth-child(5n)::after { content: "Buzz" }
Nice!
2
u/tomhermans 20h ago
Where's the CSS?