diff --git "a/1\353\262\210 \352\263\274\354\240\234/1.css" "b/1\353\262\210 \352\263\274\354\240\234/1.css" index 127ba49..13af6ff 100644 --- "a/1\353\262\210 \352\263\274\354\240\234/1.css" +++ "b/1\353\262\210 \352\263\274\354\240\234/1.css" @@ -5,9 +5,15 @@ } .circle-container { background-color: beige; - /* 코드 작성 */ + display: grid; + grid-template-columns: repeat(3,33%); + grid-template-rows: repeat(3,33%); + gap:10px; } .circle { + display:flex; + justify-content: center; + align-items: center; border-radius: 50%; background-color: burlywood; width: 30vw; @@ -15,5 +21,4 @@ margin-top: 1vw; font-weight: bold; font-size: 50px; - /* 코드 작성 */ } \ No newline at end of file diff --git "a/1\353\262\210 \352\263\274\354\240\234/1.html" "b/1\353\262\210 \352\263\274\354\240\234/1.html" index 03311d8..c1ec74b 100644 --- "a/1\353\262\210 \352\263\274\354\240\234/1.html" +++ "b/1\353\262\210 \352\263\274\354\240\234/1.html" @@ -8,15 +8,15 @@