-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildinggrade.html
59 lines (51 loc) · 1.16 KB
/
buildinggrade.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
47
48
49
50
51
52
53
54
55
56
57
58
59
<!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{
background: lightgray;
width: 700px;
margin: 70px 0 0 50px;
display: grid;
grid-template-columns:300px 300px auto;
grid-template-rows:300px 300px auto;
grid-gap: 20px;
}
.items1{
background: blue;
grid-area: 1/3/3/4;
}
.items2{
background: blueviolet;
grid-column:1/3 ;
}
.items3{
background: brown;
}
.items4{
background:chartreuse;
}
.items5{
background:chocolate;
}
.items6{
background: darkcyan;
}
</style>
<body>
<h1>welcome</h1>
<div class="container">
<div class="items items1">first</div>
<div class="items items2">second</div>
<div class="items items3">third</div>
<div class="items items4">forth</div>
<div class="items items5">fifth</div>
<div class="items items6">sixth</div>
</div>
</body>
</html>