mirror of
https://github.com/sveltejs/svelte.git
synced 2024-11-29 00:22:05 +01:00
4f6bb41030
* fix * link * more docs stuff * more * more * fix * more * more * fix * fix * more * ffs * FML
591 B
591 B
title: class:
The class:
directive is a convenient way to conditionally set classes on elements, as an alternative to using conditional expressions inside class
attributes:
<!-- These are equivalent -->
<div class={isCool ? 'cool' : ''}>...</div>
<div class:cool={isCool}>...</div>
As with other directives, we can use a shorthand when the name of the class coincides with the value:
<div class:cool>...</div>
Multiple class:
directives can be added to a single element:
<div class:cool class:lame={!cool} class:potato>...</div>