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/refs/input.html

17 lines
154 B

<div ref:a></div>
<div ref:b></div>
<div ref:c></div>
<style>
ref:a {
color: red;
}
ref:b {
color: green;
}
ref:d {
color: blue;
}
</style>