- From: Guillaume via GitHub <sysbot+gh@w3.org>
- Date: Tue, 13 Sep 2022 08:00:51 +0000
- To: public-css-archive@w3.org
So `grid-area: span` is invalid to avoid ambiguity, and `grid-template: [span] 1px` is invalid for consistency. My question is: shouldn't `grid-template-areas: "auto span"` also be parsed as invalid, for consistency? Considering this design... ```html <style> #container { display: grid; grid: "auto span"; } </style> <div id="container"> <div id="item"></div> </div> ``` ... I can place `#item` in row 1 / column 2 with `grid-area: span-start` but not with `grid-area: span`. -- GitHub Notification of comment by cdoublev Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/7723#issuecomment-1245043076 using your GitHub account -- Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Tuesday, 13 September 2022 08:01:01 UTC