Re: [csswg-drafts] [css-cascade] [css-nesting] Figure out whether we're fine with "shifting up" bare declarations after rules (#8738)

Why is this even a discussion? 🙄︀

### **_Cascading_** Style Sheets

Example 1, color used is green:
```
p
{
 color: red;
 @media (width > 0) {color: yellow;}
 color: green;
}
```

Example 2, color used is green:
```
p
{
 color: red;
 color: yellow;
}

 @media (width > 0) {p {color: green;}}
```

All the rules are at the same "level" with a simple p selector and lack !important.

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


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

Received on Monday, 27 November 2023 15:31:46 UTC