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 24f5ca3 commit 5257c39Copy full SHA for 5257c39
starter/04-CSS-Layouts/css-grid.html
@@ -36,13 +36,22 @@
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: 200px 200px 100px 100px;
45
+ grid-template-rows: 300px 200px;
46
+
47
+ /* gap: 30px; */
48
+ column-gap: 30px;
49
+ row-gap: 60px;
50
}
51
52
.container--2 {
53
+ display: none;
54
55
56
57
background-color: black;
0 commit comments