Re: [csswg-drafts] [css-grid] More granular auto placement from grid container element (#7399)

The naming thing really just makes it easier to create a layout template without the need to add classes/styles to each individual child. Currently, some grids work automatically to place their content - but as soon as you add empty cells, it no longer works. Picture this:-

```css
.modal {
  grid:
    "heading heading heading" auto
    ".       .       .      " 8px
    "body    body    body   " auto
    ".       .       .      " 12px
    "cancel  .       confirm" auto /
     1fr     4px     1fr
}
```

It's very cumbersome to manually place each child - and makes the layout much less usable

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


-- 
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config

Received on Thursday, 17 November 2022 09:56:37 UTC