Re: [csswg-drafts] [css-conditional] testing support of properties and values with partial implementations (#3559)

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