diff --git a/foundations/05-descendant-combinator/solution/solution.css b/foundations/05-descendant-combinator/solution/solution.css index a4cd654..687e5f3 100644 --- a/foundations/05-descendant-combinator/solution/solution.css +++ b/foundations/05-descendant-combinator/solution/solution.css @@ -3,4 +3,12 @@ color: red; font-size: 20px; text-align: center; -} \ No newline at end of file +} + +/* Below are some other possible descendant combinators: + +div p +div .text +.container p + +*/