CSS
> CSS Grid properties
grid-template-columns: [1fr minmax(10px, 1fr) repeat(5, 1fr) auto 50px]
grid-template-rows: [min-content 1fr 100px 1fr max-content]
gap: [row-gap column-gap]
justify-items: [start | end | center | stretch]
align-items: [start | end | center | stretch]
justify-content: [start | end | center | stretch | space-around | space-between | space-evenly]
align-content: [start | end | center | stretch | space-around | space-between | space-evenly]
grid-column: [start-line / end-line | start-line / span value]
grid-row: [start-line / end-line | start-line / span value]
justify-self: [start | end | center | stretch]
align-self: [start | end | center | stretch]