mirror of https://github.com/sveltejs/svelte
10 lines
152 B
10 lines
152 B
8 years ago
|
<div>
|
||
|
<p data-foo='barbaz'>this is styled</p>
|
||
|
<p data-foo='bazbar'>this is unstyled</p>
|
||
|
</div>
|
||
|
|
||
|
<style>
|
||
|
[data-foo^='bar'] {
|
||
|
color: red;
|
||
|
}
|
||
|
</style>
|