-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGridSystem.html
38 lines (37 loc) · 969 Bytes
/
GridSystem.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style>
.container {
display: grid;
grid-template-columns: 3fr 1fr;
grid-template-rows: 100px 200px 100px;
gap: 10px;
}
.item {
background-color: lightblue;
border: solid 2px salmon;
font-size: 20px;
font-weight: bold;
display: flex;
justify-content: center;
align-items: center;
}
</style>
</head>
<body>
<div class="container">
<div class="item">Cell 1</div>
<div class="item">Cell 2</div>
<div class="item">Cell 3</div>
<div class="item">Cell 4</div>
<div class="item">Cell 5</div>
<div class="item">Cell 6</div>
<div class="item">Cell 7</div>
<div class="item">Cell 8</div>
<div class="item">Cell 9</div>
</div>
</body>
</html>