From 3dbbd3a266658c0946e66cb99666682cc7db84c3 Mon Sep 17 00:00:00 2001 From: Micosaur Date: Wed, 23 Mar 2022 22:21:58 -0700 Subject: [PATCH 1/2] Add other possible solutions --- .../05-descendant-combinator/solution/solution.css | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/foundations/05-descendant-combinator/solution/solution.css b/foundations/05-descendant-combinator/solution/solution.css index a4cd654..4284816 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 +} + +/* Other possible combinations of selectors + +div p +div .text +.container p + +*/ \ No newline at end of file From aa67a148f053067d6ea4f7ac37266a253cd2f182 Mon Sep 17 00:00:00 2001 From: Micosaur Date: Thu, 24 Mar 2022 05:34:17 -0700 Subject: [PATCH 2/2] Use academic-like syntax --- foundations/05-descendant-combinator/solution/solution.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/foundations/05-descendant-combinator/solution/solution.css b/foundations/05-descendant-combinator/solution/solution.css index 4284816..687e5f3 100644 --- a/foundations/05-descendant-combinator/solution/solution.css +++ b/foundations/05-descendant-combinator/solution/solution.css @@ -5,10 +5,10 @@ text-align: center; } -/* Other possible combinations of selectors +/* Below are some other possible descendant combinators: div p div .text .container p -*/ \ No newline at end of file +*/