- From: Robert Flack via GitHub <noreply@w3.org>
- Date: Fri, 11 Jul 2025 16:14:26 +0000
- To: public-css-archive@w3.org
FYI the repeat syntax is specified in https://www.w3.org/TR/css-gaps-1/#lists-repeat I think that non-auto repeaters should be able to combine with non-repeater values and other repeaters intelligently, e.g. Interpolating `repeat(3, red)` to `repeat(2, red) blue` should interpolate at 50% to `repeat(2, red) #770077`. In general this probably means intersecting the range of the repeater and pulling out any values which are no longer part of it. Similarly, we should be able to have intelligent repeater list extension when you don't have auto values. When there are auto values we should create additional values before/after the auto to match the other value's preceding / following non-auto lengths, e.g. Interpolating `green repeat(auto, red) green` to `repeat(auto, blue) green` should interpolate at 50% to `#007777 repeat(auto, #770077) green`. -- GitHub Notification of comment by flackr Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/12431#issuecomment-3062894986 using your GitHub account -- Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Friday, 11 July 2025 16:14:27 UTC