-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgrid3.html
More file actions
29 lines (23 loc) · 804 Bytes
/
Copy pathgrid3.html
File metadata and controls
29 lines (23 loc) · 804 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Grid3</title>
</head>
<body>
<div style="
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
column-gap: 20px;
row-gap: 10px;
">
<div style="background-color: pink;padding: 10px;">col1</div>
<div style="background-color: pink;padding: 10px;">col2</div>
<div style="background-color: pink;padding: 10px">col3</div>
<div style="background-color: pink;padding: 10px">col4</div>
<div style="background-color: pink;padding: 10px">col1</div>
<div style="background-color: pink;padding: 10px">col2</div>
<div style="background-color: pink;padding: 10px">col3</div>
<div style="background-color: pink;padding: 10px">col4</div>
</div>
</body>
</html>