-
Notifications
You must be signed in to change notification settings - Fork 12
/
1.html
48 lines (48 loc) · 1.18 KB
/
1.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
.circle-container {
background-color: beige;
/* 코드 작성 */
display: flex;
flex-wrap: wrap;
}
.circle {
border-radius: 50%;
background-color: burlywood;
width: 30vw;
height: 30vw;
margin-top: 1vw;
font-weight: bold;
font-size: 50px;
/* 코드 작성 */
display: flex;
align-items: center;
justify-content: center;
}
</style>
</head>
<body>
<div class="circle-container">
<div class="circle">1</div>
<div class="circle">2</div>
<div class="circle">3</div>
<div class="circle">4</div>
<div class="circle">5</div>
<div class="circle">6</div>
<div class="circle">7</div>
<div class="circle">8</div>
<div class="circle">9</div>
</div>
</body>
</html>