-
@charis And it's even better like this:
grid-template-columns: repeat(auto-fill, minmax(min(20rem, 100%), 1fr));
Without this additionalmin()
, you get an horizontal scroll on a viewport less than 20rem large.
grid-template-columns: repeat(auto-fill, minmax(min(20rem, 100%), 1fr));
Without this additional min()
, you get an horizontal scroll on a viewport less than 20rem large.