-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathp_012_css_grid.html
42 lines (37 loc) · 920 Bytes
/
p_012_css_grid.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS Grid</title>
<style>
.grid-container {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 100px 200px 200px;
/* gap: 20px 50px; */
gap: 10px 20px;
}
.card {
background-color: aqua;
border-radius: 20px;
}
.top {
grid-column: span 2;
background-color: gray;
}
.left.one, .right.two {
background-color: palevioletred;
}
</style>
</head>
<body>
<div class="grid-container">
<div class="top card"></div>
<div class="left card one"></div>
<div class="right card one"></div>
<div class="left card two"></div>
<div class="right card two"></div>
</div>
</body>
</html>