From 1b10e5b49931f86d527a8803c962ba962bf5e637 Mon Sep 17 00:00:00 2001 From: Alfred Nobel Date: Tue, 19 Aug 2025 00:50:29 +0800 Subject: [PATCH 1/2] Changing the height and the width of the circle --- style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/style.css b/style.css index b1a4e3b87..7a31aeed4 100644 --- a/style.css +++ b/style.css @@ -3,6 +3,6 @@ } .circle{ border-radius:50%; - width:300px; - height:300px; + width: 500px; + height: 500px; } From b1cf13ceb92ba2054b018de4c94a71b536a3ca58 Mon Sep 17 00:00:00 2001 From: Alfred Nobel Date: Wed, 20 Aug 2025 02:07:44 +0800 Subject: [PATCH 2/2] Add .red CSS rule with background-color:red --- style.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/style.css b/style.css index 7a31aeed4..db202a0fb 100644 --- a/style.css +++ b/style.css @@ -1,6 +1,9 @@ .blue { background-color:blue } +.red { + background-color:red + } .circle{ border-radius:50%; width: 500px;