Re: [csswg-drafts] [css-ui] 'auto' as the initial value for the 'appearance' property isn't web-compatible

> 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