You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/documentation/tutorial/13-advanced-styling/02-class-shorthand/text.md

21 lines
308 B

---
title: Shorthand class directive
---
Often, the name of the class will be the same as the name of the value it depends on:
<!-- prettier-ignore -->
```svelte
<div class:big={big}>
<!-- ... -->
</div>
```
In those cases we can use a shorthand form:
```svelte
<div class:big>
<!-- ... -->
</div>
```