0
0
mirror of https://github.com/sveltejs/svelte.git synced 2024-12-01 17:30:59 +01:00
svelte/test/css/samples/omit-scoping-attribute-attribute-selector-contains/input.html
2017-07-01 16:11:38 -04:00

10 lines
158 B
HTML

<div>
<p data-foo='foobarbaz'>this is styled</p>
<p data-foo='fooBARbaz'>this is unstyled</p>
</div>
<style>
[data-foo*='bar'] {
color: red;
}
</style>