Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-properties-values-api/crashtests/computed-property-universal-syntax.html - WPT Dashboard Interop Dashboard
<!doctype html>
<meta charset=utf8>
<style>
@property --my-registered-property {
syntax: "<color>";
inherits: false;
initial-value: #f0f2f5;
}
.outer {
--unregistered-property: var(--my-registered-property);
}
.inner {
--unregistered-property: #c6cfdb;
}
</style>
<div class="outer">
<div class="inner"></div>
</div>