From 6388b7566dbde543db7130d4ad26fcb6cf99d47b Mon Sep 17 00:00:00 2001 From: Christopher Date: Sat, 3 May 2025 20:45:03 -0400 Subject: [PATCH 1/2] Increase circle size to 500px and add edit label --- circle.html | 3 ++- style.css | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/circle.html b/circle.html index 213a8df4e..8adcd3e4c 100644 --- a/circle.html +++ b/circle.html @@ -5,7 +5,8 @@ -

How to create a circle using a div

+

How to create a circle using div — Edited by Chr1SsLeon

+
diff --git a/style.css b/style.css index b1a4e3b87..e5b7463ec 100644 --- a/style.css +++ b/style.css @@ -3,6 +3,6 @@ } .circle{ border-radius:50%; - width:300px; - height:300px; + width:500px; + height:500px; } From e097726c8a7fcc256b8adf4171888cce993f7cb6 Mon Sep 17 00:00:00 2001 From: Christopher Date: Sat, 3 May 2025 21:30:43 -0400 Subject: [PATCH 2/2] Add red background color class --- style.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/style.css b/style.css index e5b7463ec..038303dfa 100644 --- a/style.css +++ b/style.css @@ -6,3 +6,6 @@ width:500px; height:500px; } +.red { + background-color: red; +}