-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrid.html
40 lines (39 loc) · 1.06 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
.grid{
background-color: green;
display: grid;
padding: 20px;
grid-column-gap:20px;
grid-row-gap:10px;
grid-template-columns:200px 200px 100px auto;
}
.grid-item{
background-color: white;
font-size:20px;
}
</style>
</head>
<body>
<div class="grid">
<div class="grid-item">1</div>
<div class="grid-item">2</div>
<div class="grid-item">3</div>
<div class="grid-item">4</div>
<div class="grid-item">5</div>
<div class="grid-item">6</div>
<div class="grid-item">7</div>
<div class="grid-item">8</div>
<div class="grid-item">9</div>
<div class="grid-item">10</div>
<div class="grid-item">11</div>
<!-- <div class="grid-item">12</div> -->
</div>
</body>
</html>