Skip to main content

Often, the name of the class will be the same as the name of the value it depends on:

<div class:big={big}>
	<!-- ... -->
</div>

In those cases we can use a shorthand form:

<div class:big>
	<!-- ... -->
</div>