Skip to content

docs: clarify class attribute usage in Svelte templates #1404

New issue

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update index.md
I am a kinda beginner-ish dev. It took me over an hour to really test and find out this problem. Adding this comment would help new devs save time. Thanks.
  • Loading branch information
arif456 authored Jun 30, 2025
commit ae014758235e756769b09b2acfb9ae38ffda83fb
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,20 @@ We can make it nicer though. Adding or removing a class based on some condition

This means 'always add the `card` class, and add the `flipped` class whenever `flipped` is truthy'.

> **Note:** When using multiple expressions inside a `class={}` attribute, make sure to combine them within a single array or object.
> Avoid separating expressions with commas at the top level (for example: `class={['foo'], 'bar'}`), as this creates a JavaScript sequence expression, which can cause errors in Runes mode and result in unintended behavior.
>
> ✅ Correct:
>
> ```svelte
> <div class={["foo", condition && "bar", "baz"]}></div>
> ```
>
> ❌ Avoid:
>
> ```svelte
> <div class={["foo"], "bar"}></div>
> ```
>

For more examples of how to combine conditional classes, [consult the `class` documentation](/docs/svelte/class).
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy