mirror of https://github.com/sveltejs/svelte
13 lines
131 B
13 lines
131 B
6 years ago
|
<div class='-foo'>foo</div>
|
||
|
|
||
|
<div title='['>bar</div>
|
||
|
|
||
|
<style>
|
||
|
.-foo {
|
||
|
color: red;
|
||
|
}
|
||
|
[title='['] {
|
||
|
color: blue;
|
||
|
}
|
||
|
</style>
|