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-if-not-.../input.svelte

25 lines
357 B

<script>
let foo = true;
let bar = true;
</script>
<style>
.a + .b { color: green; }
.a + .c { color: green; }
.a + .d { color: green; }
.b + .d { color: green; }
.c + .d { color: green; }
/* no match */
.b + .c { color: green; }
</style>
<div class="a" />
{#if foo}
<div class="b" />
{:else if bar}
<div class="c" />
{/if}
<div class="d" />