We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I believe, css-variables are ignored by doiuse.
Steps to reproduce
:root { --foo: red; } div { background-color: var(--foo); }
doiuse --browsers "ie 6" test.css
Current behaviour The following error is returned: test.css:1:1: CSS3 selectors not supported by: IE (6) (css-sel3) https://caniuse.com/#feat=css-sel3
test.css:1:1: CSS3 selectors not supported by: IE (6) (css-sel3)
Expected behaviour An error for the following feature is also returned by doiuse: https://caniuse.com/#feat=css-variables
Note I've also tried the following code, where no error was returned.
div { --foo: red; background-color: var(--foo); }
The text was updated successfully, but these errors were encountered:
Fixed in v5.0
Sorry, something went wrong.
No branches or pull requests
I believe, css-variables are ignored by doiuse.
Steps to reproduce
doiuse --browsers "ie 6" test.css
(for details: https://caniuse.com/#feat=css-variables)
Current behaviour
The following error is returned:
test.css:1:1: CSS3 selectors not supported by: IE (6) (css-sel3)
https://caniuse.com/#feat=css-sel3
Expected behaviour
An error for the following feature is also returned by doiuse:
https://caniuse.com/#feat=css-variables
Note
I've also tried the following code, where no error was returned.
The text was updated successfully, but these errors were encountered: