fix(curriculum): update challenge description for piano workshop (#59866)

This commit is contained in:
Supravisor
2025-04-22 18:29:21 +12:00
committed by GitHub
parent a3941bcd09
commit 6d2bd79145
@@ -7,7 +7,7 @@ dashedName: step-8
# --description--
Now that you've reset the `html` box model, you need to apply this to the elements inside it as well. To do this, set the `box-sizing` property to `inherit`, which ensures that the targeted elements adopt the same value as their parent element.
Now that you've reset the html box model, you need to apply this to the elements inside it as well. To do this, you will need to set the `box-sizing` property of all other elements to be inherited, which ensures that the targeted elements adopt the same value as their parent element.
You will also need to target the pseudo-elements, which are special keywords that follow a selector. The two pseudo-elements you will be using are the `::before` and `::after` pseudo-elements.