- From: John A Bilicki III via GitHub <sysbot+gh@w3.org>
- Date: Mon, 27 Nov 2023 15:31:45 +0000
- To: public-css-archive@w3.org
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