mirror of https://github.com/sveltejs/svelte
11 lines
123 B
11 lines
123 B
3 years ago
|
<svelte:element this="div" class="used" />
|
||
|
|
||
|
<style>
|
||
|
.used {
|
||
|
color: red;
|
||
|
}
|
||
|
.unused {
|
||
|
font-style: italic;
|
||
|
}
|
||
|
</style>
|