-
Notifications
You must be signed in to change notification settings - Fork 0
/
cssgrid.html
46 lines (45 loc) · 996 Bytes
/
cssgrid.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
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<style>
.container{
display: grid;
width: 400px;
height: 400px;
background: burlywood;
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-template-rows: 1fr 1fr 1fr 1fr;
}
.item{
background-color: cadetblue;
}
.container .item:nth-child(1){
grid-column: 1/2;
}
.container .item:nth-child(2){
grid-column: 2/3;
grid-row: 2/3;
}
.container .item:nth-child(3){
grid-column: 3/4;
grid-row: 3/4;
}
.container .item:nth-child(4){
grid-column: 4/5;
grid-row: 4/5;
}
</style>
<body>
<div class="container">
<div class="item"></div>
<div class="item"></div>
<div class="item"></div>
<div class="item"></div>
</div>
</body>
</html>