Today I Learned

hashrocket A Hashrocket project

CSS Has a Repeat Function

Today I Learned there is a repeat function in CSS, where

grid-template-columns: repeat(3, 1fr)

is equivalent to

grid-template-columns: 1fr 1fr 1fr

MDN docs

See More #html-css TILs