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 5257c39 commit 8275418Copy full SHA for 8275418
starter/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;
@@ -41,12 +41,17 @@
41
42
/* CSS GRID */
43
display: grid;
44
- grid-template-columns: 200px 200px 100px 100px;
45
- grid-template-rows: 300px 200px;
+ /* grid-template-columns: 200px 200px 1fr 1fr; */
+ /* grid-template-rows: 300px 200px; */
46
+ /* grid-template-columns: 1fr 1fr 1fr auto; */
47
+
48
+ grid-template-columns: repeat(4, 1fr);
49
+ grid-template-rows: 1fr auto;
50
+ height: 500px;
51
52
/* gap: 30px; */
- column-gap: 30px;
- row-gap: 60px;
53
+ column-gap: 10px;
54
+ row-gap: 40px;
55
56
57
.container--2 {
0 commit comments