I saw https://tailwindcss.com/docs/grid-column has some classes that set both grid-column-start and grid-column-end to span <number>.
For example:
grid-column: span 3 / span 3;
I can't understand why it should be this, why not just say grid-column-end: span3 instead? Is there any difference?