-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflex_center_nesting.html
46 lines (46 loc) · 1.21 KB
/
flex_center_nesting.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
<!DOCTYPE html>
<html>
<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>수직중앙 수평중앙 중첩하기</title>
<style>
body {
height: 100vh;
overflow-y: hidden;
background-color: yellow;
display: flex;
justify-content: center;
align-items: center;
}
.parent1 {
width: 70%;
height: 95%;
display: flex;
justify-content: center;
align-items: center;
background-color: lightgrey;
}
.parent2 {
width: 60%;
height: 50%;
display: flex;
justify-content: center;
align-items: center;
background-color: #AAA;
}
.child {
font-size: 20px;
font-weight: bold;
}
</style>
</head>
<body>
<div class="parent1">
<div class="parent2">
<div class="child">수직중앙 수평중앙 중첩하기</div>
</div>
</div>
</body>
</html>