-
Notifications
You must be signed in to change notification settings - Fork 0
/
week7_gridstyles.css
90 lines (79 loc) · 1.28 KB
/
week7_gridstyles.css
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
* {
box-sizing: border-box;
}
.content1 {
width: 80%;
height: 500px;
border: 1px solid;
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr 1fr;
justify-content: center;
align-content: center;
justify-items: center;
align-items: center;
}
.content2 {
width: 80%;
height: 500px;
border: 1px solid;
display: grid;
grid-template-columns: 150px 150px;
grid-template-rows: 150px 150px;
justify-items: center;
align-items: center;
justify-content: center;
align-content: center;
}
.content3 {
width: 80%;
height: 500px;
border: 1px solid;
display: grid;
grid-template-columns: 150px 150px;
grid-template-rows: 150px 150px;
justify-content: center;
align-content: center;
justify-items: center;
align-items: center;
}
.red {
width: 100px;
height: 100px;
background-color: red;
}
.green {
width: 100px;
height: 100px;
background-color: green;
}
.yellow {
width: 100px;
height: 100px;
background-color: gold;
}
.blue {
width: 100px;
height: 100px;
background-color: blue;
}
.red2 {
width: 100%;
height: 100%;
background-color: red;
}
.green2 {
width: 100%;
height: 100%;
background-color: green;
}
.yellow2 {
width: 100%;
height: 100%;
background-color: gold;
}
.blue2 {
width: 100%;
height: 100%;
background-color: blue;
}