From ffce8078246392149b57167c63670f495e4e7ccc Mon Sep 17 00:00:00 2001 From: Rachel Smyth Date: Wed, 23 Dec 2015 03:37:30 -0500 Subject: [PATCH] important rule for fizzbuzz in multiples of 15 as opposed to before and after amalgamating, which isn't *technically* what the exercise asked for --- fizzbuzz.html | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/fizzbuzz.html b/fizzbuzz.html index c59b03a..bc1a013 100644 --- a/fizzbuzz.html +++ b/fizzbuzz.html @@ -12,10 +12,13 @@ { content: 'Fizz'; } -li:nth-child(5n):after +li:nth-child(5n):before { content: 'Buzz'; } +li:nth-child(15n):before { + content: 'Fizzbuzz' !important; +}