We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Please accept my apologies if this is already a topic, feature, or I have submitted this request incorrectly.
RFC to support CSS attribute selector to target custom components via the "is" attribute.
input[is=my-custom-component] color:red; }
FWIW: I prefer the "is" attribute eg: because I think it degrades better than in situations where the JS code may have failed etc.
Many thanks
The text was updated successfully, but these errors were encountered:
It's hard to tell what you are asking for, this already works:
<style> input[is=my-custom-component] { color: red; } </style> <input is="my-custom-component" value="This is red">
Sorry, something went wrong.
You're absolutely right. My bad ! The "is" attribute rocks ! Many thanks for your response.
Thank you
No branches or pull requests
Please accept my apologies if this is already a topic, feature, or I have submitted this request incorrectly.
RFC to support CSS attribute selector to target custom components via the "is" attribute.
input[is=my-custom-component]
color:red;
}
FWIW: I prefer the "is" attribute eg: because I think it degrades better than in situations where the JS code may have failed etc.
Many thanks
The text was updated successfully, but these errors were encountered: