-
Notifications
You must be signed in to change notification settings - Fork 0
/
grids.html
28 lines (28 loc) · 877 Bytes
/
grids.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
<!DOCTYPE html>
<html>
<head>
<title> Grids Practice</title>
</head>
<body>
<div style="display: grid; grid-template-columns: 1fr 1fr 1fr; column-gap: 10px; row-gap: 10px;">
<div style="background-color: lightpink; height: 100px;">
1fr
</div>
<div style="background-color: lightblue;">
1 fr
</div>
<div style="background-color: lightpink;">
1 fr
</div>
<div style="background-color: lightblue; height: 100px;">
1 fr
</div>
<div style="background-color: lightpink;">
1 fr
</div>
<div style="background-color: lightblue; height: 100px;">
1 fr
</div>
</div>
</body>
</html>