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/general-siblings-combinator.../input.svelte

37 lines
447 B

<script>
let array = [1];
</script>
<style>
/* boundary of each */
.a ~ .b {
color: green;
}
.c ~ .d {
color: green;
}
/* if array is empty */
.a ~ .d {
color: green;
}
/* if array has multiple items */
.c ~ .b {
color: green;
}
/* normal sibling */
.b ~ .c {
color: green;
}
.a ~ .c {
color: green;
}
</style>
<div class="a" />
{#each array as item}
<div class="b" />
<div class="c" />
{/each}
<div class="d" />