0
0
mirror of https://github.com/sveltejs/svelte.git synced 2024-12-01 17:30:59 +01:00
svelte/test/css/samples/combinator-child/input.svelte
2019-02-08 08:48:10 -05:00

12 lines
105 B
HTML

<div class="test">
<div>
Testing...
</div>
</div>
<style>
.test > div {
color: #0af;
}
</style>