
How to Toggle Classes in Svelte
You can use the class directive in Svelte to easily toggle classes on an element.
Copied to clipboard!
<!-- You can use the class: directive to toggle a class on an element -->
<!-- π΄ Instead of -->
<li class="{active ? 'active' : ''}">Dashboard</li>
<!-- β
You can do -->
<!-- The two are equivalent -->
<li class:active={active}>Dashboard</li>
If both name and value match, you can also simplify things by omitting both the class name and the variable assignment as well:
Copied to clipboard!
<li class:active>Dashboard</li>
You also have the option to define multiple classes at once, like so:
Copied to clipboard!
<li class:inactive class:hidden>Secrets</li>


Resources:
π More Webtips
Master the Art of Frontend
Access exclusive interactive lessons
Unlimited access to hundreds of tutorials
Remove ads to learn without distractions