mirror of https://github.com/sveltejs/svelte
16 lines
197 B
16 lines
197 B
7 years ago
|
<span class='foo'>
|
||
|
<span class='bar'>text</span>
|
||
|
</span>
|
||
|
|
||
|
<span class='foo'>
|
||
7 years ago
|
<span class='bar'>{dynamic}</span>
|
||
7 years ago
|
</span>
|
||
|
|
||
|
<style>
|
||
|
.foo {
|
||
|
color: red;
|
||
|
}
|
||
|
.bar {
|
||
|
font-style: italic;
|
||
|
}
|
||
|
</style>
|