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 baec6cd commit f7a4022Copy full SHA for f7a4022
starter/04-CSS-Layouts/css-grid.html
@@ -41,9 +41,13 @@
41
42
/* CSS GRID */
43
display: grid;
44
- grid-template-columns: 200px 200px 200px 200px;
45
- grid-template-rows: 200px 200px 200px 200px;
46
- gap: 30px;
+ grid-template-columns: repeat(4, 1fr);
+
+ grid-template-rows: 1fr 1fr;
47
48
+ /*gap: 30px;*/
49
+ column-gap: 10px;
50
+ row-gap: 40px;
51
}
52
53
.container--2 {
@@ -59,6 +63,11 @@
59
63
60
64
61
65
66
67
+ .el--8 {
68
+ grid-column: 2 / 3;
69
+ grid-column: 4 / 5;
70
+ }
62
71
</style>
72
</head>
73
<body>
0 commit comments