Description
I would love to be able to place a grid item across multiple named grid areas, and to also name grid-rows and columns and place items across multiple ones of those as well.
It would be really nice to be able to name grid-areas, like so:
grid-template-areas:
"A1 A2 A3 A4 A5"
"B1 B2 B3 B4 B5"
"C1 C2 C3 C4 C5"
...then I could place an item like so:
gird-area: B2 / C4;
...and this would place the item in B2, B3, B4 and also C2, C3 and C4.
This would be amazing for building something like a musical note sequencer where one could define a midi note name
and musical timing
grid like so:
grid-template-areas:
"D1-1.1 D1-1.2 D1-1.3 D1-1.4 D1-2.1 D1-2.2 D1-2.3 D1-2.4"
"C#1-1.1 C#1-1.2 C#1-1.3 C#1-1.4 C#1-2.1 C#1-2.2 C#1-2.3 C#1-2.4"
"C1-1.1 C1-1.2 C1-1.3 C1-1.4 C1-2.1 C1-2.2 C1-2.3 C1-2.4"
...and then place a note across multiple named grid areas. like so:
grid-area: C1-1.2 / C1-2.1;
Or better yet, simple name rows and columns, like so:
grid-template-columns: 1fr('1.1') 1fr('1.2') 1fr('1.3') 1fr('1.4') 1fr('2.1') 1fr('2.2') 1fr('2.3') 1fr('2.4')";
grid-template-rows:
"
1fr('D#/Eb1')
1fr('D1')
1fr('C#/Db1')
1fr('C1')
"
...then one could place an item using both and spanning multiple of each one, like so:
grid-row: 'C1';
grid-column: '1.1' / '1.3';
...or something along those lines. This could be really nice for these kinds of use-cases where one wants to place an item on an intricate grid in a very precise way without having to count every line and make sure the lines are right. I could imagine a scenario where the grid has hundreds of columns and over a hundred rows...I really don't want to have to figure out where:
grid-column: 134 / 146;
...is on that grid! ahhhh!
Anyway, just dropping these questions/ideas off for now...will come back and work on them more later if the general concept is well received :-)
Thank you! XD