mirror of https://github.com/sveltejs/svelte
17 lines
189 B
17 lines
189 B
4 years ago
|
<style>
|
||
|
.match > * + * {
|
||
|
margin-left: 4px;
|
||
|
}
|
||
|
.not-match > * + * {
|
||
|
margin-left: 4px;
|
||
|
}
|
||
|
</style>
|
||
|
|
||
|
<div class="not-match">
|
||
|
<div />
|
||
|
</div>
|
||
|
|
||
|
<div class="match">
|
||
|
<div />
|
||
|
<div />
|
||
|
</div>
|