fix(curriculum): add explanation for child combinator (#52403)

Co-authored-by: Jessica Wilkins <67210629+jdwilkin4@users.noreply.github.com>
This commit is contained in:
evankart
2023-11-22 14:31:35 -08:00
committed by GitHub
parent d1b5165586
commit eea074dfab

View File

@@ -9,6 +9,10 @@ dashedName: step-13
# --description--
The child combinator selector `>` is used between selectors to target only elements that match the second selector and are a direct child of the first selector.
This can be helpful when you have deeply nested elements and want to control the scope of your styling.
Use the `>` selector to target the unordered list elements within the `nav` elements, and use _Flexbox_ to evenly space the children.
# --hints--