blob: d56cb4bf53077e6a298d2e79d1e2f75cb024af35 [file] [edit]
<style>
html {
--rem: 1rem;
}
body {
font-size: 6em;
timeline-scope: --foo;
}
.test {
font-size: var(--rem);
animation: --test;
animation-timeline: --foo;
}
@keyframes --test {
0% {
--foo: unused;
}
}
</style>
<div class="test">
This should be small.
</div>