So you I want grid like this:
+-----------------------+
| A |
-------|--------|-------+
| B | C | D |
| | | |
+------+--------+-------+
I can do something like this (scss syntax):
grid-template-areas: "a-block a-block a-block" "b-block c-block d-block";
So question: how can I not repeat, "a-block" three times? Can I do something like repeat("a_block", 3)
or whatever?
Is there a more compact way to span grid-area columns (in sass)?