File size: 1,904 Bytes
9b0615b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<style>
  .grid-container {
    display: grid;
    grid-template-columns: repeat(5, auto); /* 5์—ด */
    grid-template-rows: repeat(2, auto);    /* 2ํ–‰ */
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin: 50px;
  }

  .item {
    display: flex;
    align-items: center;
    /* ๊ฐ item ์•ˆ์—์„œ ์ด๋ฏธ์ง€์™€ ๋น„๋””์˜ค ๋น„์œจ ์กฐ์ •:
       img : video = 1 : 2 ๋กœ ์„ค์ • */
  }

  .item img {
    flex: 1;
    max-width: 100%;
    height: auto;
  }

  .item video {
    flex: 2;
    max-width: 100%;
    height: auto;
  }
</style>
</head>
<body>

<div class="grid-container">
  <div class="item">
    <img src="1.webp" alt="1">
    <video src="1.mp4" autoplay loop muted></video>
  </div>
  <div class="item">
    <img src="2.webp" alt="2">
    <video src="2.mp4" autoplay loop muted></video>
  </div>
  <div class="item">
    <img src="3.webp" alt="3">
    <video src="3.mp4" autoplay loop muted></video>
  </div>
  <div class="item">
    <img src="4.webp" alt="4">
    <video src="4.mp4" autoplay loop muted></video>
  </div>
  <div class="item">
    <img src="5.webp" alt="5">
    <video src="5.mp4" autoplay loop muted></video>
  </div>
  <div class="item">
    <img src="6.webp" alt="6">
    <video src="6.mp4" autoplay loop muted></video>
  </div>
  <div class="item">
    <img src="7.webp" alt="7">
    <video src="7.mp4" autoplay loop muted></video>
  </div>
  <div class="item">
    <img src="8.webp" alt="8">
    <video src="8.mp4" autoplay loop muted></video>
  </div>
  <div class="item">
    <img src="9.webp" alt="9">
    <video src="9.mp4" autoplay loop muted></video>
  </div>
  <div class="item">
    <img src="10.webp" alt="10">
    <video src="10.mp4" autoplay loop muted></video>
  </div>
</div>

</body>
</html>