Re: [csswg-drafts] [css-grid] Interpolate repeat() (#3503)

How about:
```
repeat(2, 2fr 30px)
repeat(4, 40px 40px)
```
 and
```
repeat(auto-fill, 10px)
repeat(auto-fit, 20px)
```

It might be convenient to authors if we could treat the first argument to `repeat()` as just another component that is animatable if the 2nd argument has the same length. My first example would then animate as `repeat(2, ...)` `repeat(3, ...)` `repeat(4, ...)`.   My second example would animate the first argument discretely while still animating `10px` -> `20px` as a `<length>`. (`<integer>` -> `auto-fill/fit` would also be discrete)

-- 
GitHub Notification of comment by MatsPalmgren
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/3503#issuecomment-453673292 using your GitHub account

Received on Friday, 11 January 2019 22:10:59 UTC