[csswg-drafts] [css-grid] max<min comparison in minmax() (#3567)

Loirooriol has just created a new issue for https://github.com/w3c/csswg-drafts:

== [css-grid] max<min comparison in minmax() ==
From https://drafts.csswg.org/css-grid/#valdef-grid-template-columns-minmax

> - `minmax(min, max)`
>    Defines a size range greater than or equal to `min` and less than or equal to `max`. If `max < min`, then max is ignored and `minmax(min,max)` is treated as `min`. 

It's not clear whether the last sentence means that `minmax(min,max)` should be treated as `min` before starting the sizing algorithm, i.e. that both the initial min and max track sizing functions should be `min`, or whether it refers to

> In all cases, if the growth limit is less than the base size, increase the growth limit to match the base size.

which keeps appearing along the algorithm, and the initial min and max track sizing functions will still be the specified values.

In the former case, please define how to perform the comparison if `min` and `max` are not both `<length>` or resolveable `<percentage>`.

Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/3567 using your GitHub account

Received on Tuesday, 29 January 2019 23:01:15 UTC