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/test/css/samples/siblings-combinator-each/input.svelte

20 lines
227 B

<script>
let array = [1];
</script>
<style>
div + span {
color: green;
}
</style>
<div />
{#each array as item}
<span class="each" />
<div class="each" />
<span class="each" />
<div class="each" />
{/each}
<span />