Update index.html
Browse files- index.html +4 -4
index.html
CHANGED
@@ -8,20 +8,20 @@
|
|
8 |
margin:0; padding:0;
|
9 |
width:100vw; height:100vh;
|
10 |
display:flex;
|
11 |
-
justify-content:center;
|
12 |
-
align-items:
|
13 |
-
background:#000;
|
14 |
overflow:hidden;
|
15 |
}
|
16 |
|
17 |
.grid-container {
|
18 |
display: grid;
|
19 |
-
/* 크기 더 축소: 50vw, 50vh로 설정 */
|
20 |
width: 50vw;
|
21 |
height: 50vh;
|
22 |
grid-template-columns: 1fr 2fr 1fr 2fr;
|
23 |
grid-template-rows: repeat(5, 1fr);
|
24 |
gap: 0;
|
|
|
25 |
}
|
26 |
|
27 |
img, video {
|
|
|
8 |
margin:0; padding:0;
|
9 |
width:100vw; height:100vh;
|
10 |
display:flex;
|
11 |
+
justify-content:center; /* 가로 방향 중앙 정렬 */
|
12 |
+
align-items:flex-start; /* 세로 방향 상단 정렬 */
|
13 |
+
background:#000;
|
14 |
overflow:hidden;
|
15 |
}
|
16 |
|
17 |
.grid-container {
|
18 |
display: grid;
|
|
|
19 |
width: 50vw;
|
20 |
height: 50vh;
|
21 |
grid-template-columns: 1fr 2fr 1fr 2fr;
|
22 |
grid-template-rows: repeat(5, 1fr);
|
23 |
gap: 0;
|
24 |
+
/* 상단에 불필요한 여백 없이 바로 붙여둠 */
|
25 |
}
|
26 |
|
27 |
img, video {
|