Hi 
Ich versuche ein grid-item über eine gewisse Anzahl Grid-Zellen zu spannen.
https://stackblitz.com/edit/web-platform-epsyfp?file=styles.css
Mittels:
Aber irgendwie funktioniert das nicht.
Was aber geht ist:
Aber es müsste doch auch nur mit
Ich sehe hier in der Doku nichts, das dagegen sprechen würde?
https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-start
span && [ <integer> || <custom-ident> ]
Contributes a grid span to the grid item's placement, such that the column start edge of the grid item's grid area is n lines from the end edge.
If a name is given as a <custom-ident>, only lines with that name are counted. If not enough lines with that name exist, all implicit grid lines on the side of the explicit grid corresponding to the search direction are assumed to have that name for the purpose of counting this span.

Ich versuche ein grid-item über eine gewisse Anzahl Grid-Zellen zu spannen.
https://stackblitz.com/edit/web-platform-epsyfp?file=styles.css
Mittels:
.footer {
background-color: teal;
display: grid;
align-items: center;
justify-items: center;
grid-column-start: span huba;
}
Aber irgendwie funktioniert das nicht.
Was aber geht ist:
grid-column-start: 1;
grid-column-end: span huba;
Aber es müsste doch auch nur mit
grid-column-start: span huba
funktionieren?Ich sehe hier in der Doku nichts, das dagegen sprechen würde?
https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-start
span && [ <integer> || <custom-ident> ]
Contributes a grid span to the grid item's placement, such that the column start edge of the grid item's grid area is n lines from the end edge.
If a name is given as a <custom-ident>, only lines with that name are counted. If not enough lines with that name exist, all implicit grid lines on the side of the explicit grid corresponding to the search direction are assumed to have that name for the purpose of counting this span.