- From: Sebastian Zartner via GitHub <sysbot+gh@w3.org>
- Date: Thu, 08 Jun 2017 14:38:40 +0000
- To: public-css-archive@w3.org
> But probably the bigger one was https://bugzilla.mozilla.org/show_bug.cgi?id=1365614 .
Regarding this issue, the question is whether `appearance` values others than `none` and `auto` are already used in the wild.
The given example it obviously wrong, as it uses `appearance: checkbox`. If it looked like this, everything would be fine:
```css
input {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
input[type="checkbox"] {
-webkit-appearance: checkbox;
-moz-appearance: checkbox;
appearance: auto;
}
```
Sebastian
--
GitHub Notification of comment by SebastianZ
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/1250#issuecomment-307123804 using your GitHub account
Received on Thursday, 8 June 2017 14:38:46 UTC