-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest02.html
More file actions
48 lines (44 loc) · 1.34 KB
/
Copy pathtest02.html
File metadata and controls
48 lines (44 loc) · 1.34 KB
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>
<head>
<meta charset="utf-8" />
<title>Hi, euro</title>
<style>
.container {
background: aliceblue;
border: 2px solid skyblue;
border-radius: 8px;
width: 500px;
height: 500px;
display: grid;
grid: repeat(3, 100px) / repeat(3, 100px);
grid-gap: 8px;
/* 아래의 값 들을 조합하여 직접 눈으로 살펴 봅시다. */
align-content: stretch;
justify-content: stretch;
align-items: end;
justify-items: end;
}
.item {
width: 50px;
height: 50px;
background: #fff;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
border-radius: 8px;
}
</style>
</head>
<body>
<div class="container">
<div class="item">1</div>
<div class="item">2</div>
<div class="item">3</div>
<div class="item">4</div>
<div class="item">5</div>
<div class="item">6</div>
<div class="item">7</div>
<div class="item">8</div>
<div class="item">9</div>
</div>
</body>
</html>