- From: Tim Nguyen via GitHub <sysbot+gh@w3.org>
- Date: Fri, 09 Aug 2024 16:08:56 +0000
- To: public-css-archive@w3.org
It's also worth noting that: ``` select, select::select-fallback-button { font-family: monospace; font-size: 12px; } ``` doesn't actually work in older browsers, because the whole declaration will be dropped as a result of not being able to parse `select, select::select-fallback-button`. So you'd end up having to do: ``` @supports selector(::select-fallback-button) { // duplicate styling } @supports not selector(::select-fallback-button) { // duplicate styling } ``` I think it would be really good to try to make styling on `select` just work directly in this case. -- GitHub Notification of comment by nt1m Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/10717#issuecomment-2278287080 using your GitHub account -- Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Friday, 9 August 2024 16:08:56 UTC