- From: BrentARitchie via GitHub <sysbot+gh@w3.org>
- Date: Wed, 30 Jan 2019 22:38:50 +0000
- To: public-css-archive@w3.org
Is it feasible to have ```@supports``` defined in the context of another selector? Something like:
```css
body {
display: flex;
margin: 2rem;
@supports(column:gap) {
margin:0;
column: gap;
}
}
```
This way, the parsing stays simple and uses basic 'does it parse' logic.
--
GitHub Notification of comment by BrentARitchie
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/3559#issuecomment-459138654 using your GitHub account
Received on Wednesday, 30 January 2019 22:38:51 UTC