From ce7531f76899e4b57849bf92ba0d17b722d2ba0b Mon Sep 17 00:00:00 2001 From: NetMan <13informatyka14@gmail.com> Date: Thu, 28 Dec 2023 18:52:48 +0100 Subject: [PATCH] Completed exercise 05 --- 05-descendant-combinator/style.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/05-descendant-combinator/style.css b/05-descendant-combinator/style.css index e69de29..bc7fe99 100644 --- a/05-descendant-combinator/style.css +++ b/05-descendant-combinator/style.css @@ -0,0 +1,6 @@ +div > p { + background-color: yellow; + color: red; + font-size: 20px; + text-align: center; +} \ No newline at end of file