- Notifications
You must be signed in to change notification settings - Fork 3.3k
/
Copy pathvariable-reference-02.html
23 lines (23 loc) · 680 Bytes
/
variable-reference-02.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<!DOCTYPE html>
<title>CSS Test: Test the use of a variable in a non-custom property where the value is invalid at computed-value time due to referencing a non-existent variable.</title>
<linkrel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au">
<linkrel="help" href="http://www.w3.org/TR/css-variables-1/#invalid-variables">
<linkrel="match" href="support/color-green-ref.html">
<style>
:root {
--a: crimson;
color: red;
}
body {
color: green;
}
p {
color: orange;
color:var(--a) var(--b);
}
</style>
<p>This text must be green.</p>