0

In this example: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns

Is it possible to span the 5th column with CSS Grid across the grid track?

Squiggs.
  • 4,299
  • 6
  • 49
  • 89

1 Answers1

0

You can by playing with the grid-column CSS property.

Reference here : https://developer.mozilla.org/fr/docs/Web/CSS/grid-column

In the case you're presenting, we would have to set

grid-column: 1 / 3

For the element 'Five'

Oddrigue
  • 554
  • 5
  • 17