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