-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (40 loc) · 997 Bytes
/
index.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>Grid</title>
<style>
.container{
display: grid;
grid-template-rows: 100px 100px 100px 100px 100px;
grid-template-columns: 100px 100px 100px 100px 100px;
text-align: center;
}
.div1{
background-color: aquamarine;
grid-column: 3/4;
grid-row: 5/6;
}
.div2{
background-color: yellow;
grid-column: 2/4;
grid-row: 2/3;
z-index: 1;
}
.div3{
background-color: red;
grid-column: 3/5;
grid-row: 2/3;
z-index: 2;
}
</style>
</head>
<body>
<div class="container">
<div class="div1">1st</div>
<div class="div2">2nd</div>
<div class="div3">3rd</div>
</div>
</body>
</html>