blob: eb813be8b489e7b9737dfb0bf1015346c8cbd56a [file] [log] [blame]
<style>
:root {
--a: crimson;
color: red;
}
body {
color: green;
}
p {
color: orange;
color: var(--a) var(--b);
}
</style>
<body>
<p>This text should be green.
</p>