From 8deae8a6a010b5c86eb782ec53d8d0674349c714 Mon Sep 17 00:00:00 2001 From: ZhengjieYe <72693206+ZhengjieYe@users.noreply.github.com> Date: Sat, 31 Jul 2021 15:17:26 +0100 Subject: [PATCH] Correct a small error in Task Solutions --- learn/solutions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/learn/solutions.md b/learn/solutions.md index ca374063..8a1a997c 100644 --- a/learn/solutions.md +++ b/learn/solutions.md @@ -18,7 +18,7 @@ One possible solution is as follows: There are two things you need to do in this task. First, you need to write a selector for the `a` element which is more specific than the selector used to turn the background blue. I have achieved this by using the `id` selector which has very high specificity. -Then you need to remember that there are special keyword values for all properties. In this case I am using `inherit` to set the background back to be the same as its parent element. +Then you need to remember that there are special keyword values for all properties. In this case I am using `initial` to set the background back to be the same as the default style of your browser, which is white. ## Attribute Selectors