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
https://svelte.dev/tutorial/svelte/component-styles says:
Any parent element (such as <div class="boxes">) can set the value of --color, but we can also set it on individual components: <div class="boxes"> <Box --color="red" /> <Box --color="green" /> <Box --color="blue" /> </div>
Any parent element (such as <div class="boxes">) can set the value of --color, but we can also set it on individual components:
<div class="boxes">
--color
<div class="boxes"> <Box --color="red" /> <Box --color="green" /> <Box --color="blue" /> </div>
This makes me think that I can do:
<div --color="red">
but this results in the error:
Error compiling App.svelte '--color' is not a valid attribute name https://svelte.dev/e/attribute_invalid_name
Error compiling App.svelte
'--color' is not a valid attribute name https://svelte.dev/e/attribute_invalid_name
I think this could be explained clearer. Maybe show the way to set the value on a HTML tag first, and then introduce the component syntax?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://svelte.dev/tutorial/svelte/component-styles says:
This makes me think that I can do:
but this results in the error:
I think this could be explained clearer. Maybe show the way to set the value on a HTML tag first, and then introduce the component syntax?
The text was updated successfully, but these errors were encountered: