anandthakker / doiuse

:bomb: Lint CSS for browser support against caniuse database.
MIT License
1.24k stars 51 forks source link

CSS property: "max-width: stretch" doesn't throw error even if it is unsupported #131

Closed egidijusja closed 3 years ago

egidijusja commented 3 years ago

max-width: stretch is experimental feature and it does have partial support for chrome and edge and no support for safari and firefox (https://caniuse.com/?search=stretch), although when I try to check it (doiuse --browsers "Firefox >= 72" main.css) it doesn't show any errors or warnings. And this is the file I'm checking:

.someClass {
 max-width: stretch;
}

Is this expected?