We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 044db0d commit 80cd7afCopy full SHA for 80cd7af
ongoing/04-CSS-Layouts/css-grid.html
@@ -14,7 +14,7 @@
14
}
15
.el--3 {
16
background-color: green;
17
- height: 150px;
+ /* height: 150px; */
18
19
.el--4 {
20
background-color: goldenrod;
@@ -36,13 +36,24 @@
36
/* STARTER */
37
font-family: sans-serif;
38
background-color: #ddd;
39
- font-size: 40px;
+ font-size: 30px;
40
margin: 40px;
41
42
/* CSS GRID */
43
+ display: grid;
44
+ /* grid-template-columns: 1fr 1fr 1fr auto; */
45
+ /* grid-template-rows: 300px 200px; */
46
+ grid-template-columns: repeat(4, 1fr);
47
+ grid-template-rows: 1fr auto;
48
+ height: 500px;
49
+
50
+ /* gap: 30px; */
51
+ column-gap: 10px;
52
+ row-gap: 40px;
53
54
55
.container--2 {
56
+ display: none;
57
58
59
background-color: black;
0 commit comments