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
We'd better test for tabindex starting by - for negative values instead of sticking to a -1 exact match.
tabindex
-
-1
This would be nicer: [tabindex]:not([tabindex="0"]):not([tabindex^="-"]) { … }.
[tabindex]:not([tabindex="0"]):not([tabindex^="-"]) { … }
And another useful reference to add: https://www.scottohara.me/blog/2019/05/25/tabindex.html
The text was updated successfully, but these errors were encountered:
e60289c
feat(tabindex): check for any negative values, for #360
51e46dc
ffoodd
No branches or pull requests
We'd better test for
tabindex
starting by-
for negative values instead of sticking to a-1
exact match.This would be nicer:
[tabindex]:not([tabindex="0"]):not([tabindex^="-"]) { … }
.And another useful reference to add: https://www.scottohara.me/blog/2019/05/25/tabindex.html
The text was updated successfully, but these errors were encountered: