From 3dbbd3a266658c0946e66cb99666682cc7db84c3 Mon Sep 17 00:00:00 2001 From: Micosaur Date: Wed, 23 Mar 2022 22:21:58 -0700 Subject: [PATCH] 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