Re: [csswg-drafts] [css-selectors] :style() - detecting css tags

You could disallow any properties that were used for selection.

Allowed:
```css
div:style(display: flex) {
    background-color: grey;
}
```

NotAllowed (Ignored):
```css
div:style(display: flex) {
    display: grid;
}
```

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

Received on Tuesday, 8 August 2017 14:45:27 UTC