We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 783dd43 commit a8061deCopy full SHA for a8061de
15 - Naming Lines in CSS Grid/naming-lines-START.html
@@ -46,10 +46,16 @@
46
.container {
47
display: grid;
48
grid-gap: 20px;
49
- grid-template-columns: 1fr 500px 1fr;
50
- grid-template-rows: repeat(10, auto);
+ grid-template-columns: [sidebar-start site-left] 1fr [sidebar-end content-start] 500px [content-end] 1fr [site-right];
+ grid-template-rows: [content-top] repeat(10, auto) [content-bottom];
51
+ }
52
+
53
+ .item3 {
54
+ background: slateblue;
55
+ grid-column: content-start;
56
+ grid-row: content-top / content-bottom;
57
}
58
</style>
59
</body>
60
-</html>
61
+</html>
0 commit comments