Chrome gives an invalid property value
and doesn\'t respect the CSS:
grid-template-columns: repeat(auto-fill, minmax(auto, 1fr));
When using auto-fill
or auto-fit
, there must be a definite min-size or max-size.
By "definite", the spec means:
A size that can be determined without measuring content.
https://www.w3.org/TR/css-sizing-3/#definite
When you set both minmax
arguments to content-based size, like this:
grid-template-columns: repeat(auto-fill, minmax(auto, 1fr));
... that's a violation of the spec because there is no definite size.
Using min-content
and max-content
would result in the same error for the same reason.
As long as one value is definite, and the first value is not fr
(see below), the rule is valid.
7.2.2.2. Repeat-to-fill: auto-fill and auto-fit repetitions
When
auto-fill
is given as the repetition number, if the grid container has a definite size or max size in the relevant axis, then the number of repetitions is the largest possible positive integer that does not cause the grid to overflow its grid container (treating each track as its max track sizing function if that is definite or as its minimum track sizing function otherwise, and takinggrid-gap
into account).If any number of repetitions would overflow, then 1 repetition.
Otherwise, if the grid container has a definite min size in the relevant axis, the number of repetitions is the smallest possible positive integer that fulfills that minimum requirement.
Otherwise, the specified track list repeats only once.