Re: [csswg-drafts] [css-grid-2] option to specify an optional sequence of track sizes

My original thought was wanting `auto-fill` (and `auto-fit`) to be able to work as "0 or more" repetitions instead of "1 or more".

That seems really powerful to me, mainly for defining components that can be laid out horizontally or vertically.

An example of this could be a sign in form that appears in different contexts (with different container widths) that should be either:
```
+---------------+---------------+---------------+
| Username      | Password      | Log In        |
+---------------+---------------+---------------+
```
or:
```
+---------------+
| Username      |
+---------------+
| Password      |
+---------------+
| Log In        |
+---------------+
```
but not:
```
+---------------+---------------+
| Username      | Password      |
+---------------+---------------+
| Log In        |               |
+---------------+---------------+
```

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

Received on Monday, 19 November 2018 03:57:23 UTC