- From: Oriol Brufau via GitHub <sysbot+gh@w3.org>
- Date: Fri, 15 Nov 2019 20:58:19 +0000
- To: public-css-archive@w3.org
@cdoublev When the window is small enough, `repeat(auto-fill, minmax(200px, 1fr))` will only produce a single explicit column, otherwise there would be overflow. Then, item D has a span of 3, so 2 implicit columns are added at the end. These implicit columns are not sized with `minmax(200px, 1fr)`, they obey the `grid-auto-column` property instead, which defaults to `auto`. To achieve your desired behavior, use `grid-auto-columns: minmax(200px, 1fr)`. -- GitHub Notification of comment by Loirooriol Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/4043#issuecomment-554525682 using your GitHub account
Received on Friday, 15 November 2019 20:58:24 UTC