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..a358c6d 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" @@ -3,9 +3,13 @@ padding: 0; margin: 0; } -.circle-container { - background-color: beige; - /* 코드 작성 */ + .circle-container { + background-color: beige; + /* 코드 작성 */ + display:grid; + grid-template-columns: 100px 100px 100px ; + grid-template-rows: 100px 100px 100px ; + gap: 120px; } .circle { border-radius: 50%; @@ -16,4 +20,8 @@ font-weight: bold; font-size: 50px; /* 코드 작성 */ + display: flex; + align-items: center; + justify-content: center; + } \ 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..4a9ff36 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 @@