Support "appearance"?
See original GitHub issueI see that appearance
is not supported equally through different browsers, but maybe at least some
appearance: none
-webkit-appearance: none
-moz-appearance: none
support would be nice?
Issue Analytics
- State:
- Created 10 years ago
- Comments:26 (25 by maintainers)
Top Results From Across the Web
Appearance of Child Support Creditor or Representative
Appearance of Child Support Creditor or Representative. Download Form (pdf, 15.38 KB). Form Number: B 2810. Category: Bankruptcy Forms.
Read more >Appearance Rates | NCSC - National Center for State Courts
The National Center for State Courts is offering technical assistance to help improve court appearance rates and reduce harmful responses to ...
Read more >"appearance" | Can I use... Support tables for HTML5, CSS3, etc
The appearance property defines how elements (particularly form controls) appear by default. By setting the value to none the default appearance can be ......
Read more >appearance - CSS: Cascading Style Sheets - MDN Web Docs
The appearance CSS property is used to control native appearance of UI controls, that are based on operating system's theme.
Read more >General Forms | NYCOURTS.GOV - Unified Court System
GF-5b, Affidavit in Support of Issuance of Family Court Temporary Order of Protection (Individual ... GF-29, Notice of Appearance, Doc.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@jasonkuhrt create a PostCSS plugin for this non-standard cases, like @yisibl created CSS Grace for IE hacks.
I want to add this property too. But I can’t do it. Becuase after few years there will be no prefixes. And right now Autoprefixer works in that case, that you will remove it after few years.
If your CSS will contains
appearance: none
, it will be broken without Authoprefixer.Of course, we can add warnings and extra options. But right now Autoprefixer is the slowest PostCSS plugin because of many extra non-standard cases. Autoprefixer’s code base is complicated, so only I maintain it. Extra option for this non-standard cases make it more complicated. And we have no really reasons for this victims.
You can really write PostCSS plugin for
appearance
by few lines of code:Thats all! You need only
README.md
and tests. You can use postcss-size plugin a boilerplate.To be clear, I think if the data is available in Can I Use, we should support it. People _will_ benefit from it, and if the sticking point is “non-standard” then we just need to correctly _frame/_communicate the feature; its an _interface_ issue. Saying “nope, we’re not going to support this” is dumb if the underlaying data is available and _people are already using this anyways_.