-
Notifications
You must be signed in to change notification settings - Fork 704
/
Copy pathOverview.bs
1149 lines (959 loc) · 40.6 KB
/
Overview.bs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<pre class='metadata'>
Title: CSS Custom Properties for Cascading Variables Module Level 2
Status: ED
Work Status: exploring
Shortname: css-variables
Level: 2
Group: csswg
ED: https://drafts.csswg.org/css-variables-2/
Editor: Tab Atkins Jr., Google, http://xanthir.com/contact, w3cid 42199
Abstract: This module introduces cascading variables as a new primitive value type that is accepted by all CSS properties, and custom properties for defining them.
Default Highlight: css
WPT Path Prefix: css/css-variables/
WPT Display: closed
Implementation Report: https://wpt.fyi/results/css/css-variables
</pre>
<pre class=link-defaults>
spec:css-values-4; type:dfn; text:identifier
spec:css-color-4; type:property; text:color
spec:selectors-4; type:selector; text: :lang()
</pre>
<h2 id="intro">
Introduction</h2>
<em>This section is not normative.</em>
Large documents or applications
(and even small ones)
can contain quite a bit of CSS.
Many of the values in the CSS file will be duplicate data;
for example,
a site may establish a color scheme
and reuse three or four colors throughout the site.
Altering this data can be difficult and error-prone,
since it's scattered throughout the CSS file
(and possibly across multiple files),
and may not be amenable to Find-and-Replace.
This module introduces a family of custom author-defined properties known collectively as <a>custom properties</a>,
which allow an author to assign arbitrary values to a property with an author-chosen name,
and the ''var()'' function,
which allow an author to then use those values in other properties elsewhere in the document.
This makes it easier to read large files,
as seemingly-arbitrary values now have informative names,
and makes editing such files much easier and less error-prone,
as one only has to change the value once,
in the <a>custom property</a>,
and the change will propagate to all uses of that variable automatically.
<h3 id="values">
Value Definitions</h3>
This specification follows the <a href="https://www.w3.org/TR/CSS2/about.html#property-defs">CSS property definition conventions</a> from [[!CSS2]]
using the <a href="https://www.w3.org/TR/css-values-3/#value-defs">value definition syntax</a> from [[!CSS-VALUES-3]].
Value types not defined in this specification are defined in CSS Values & Units [[!CSS-VALUES-3]].
Combination with other CSS modules may expand the definitions of these value types.
In addition to the property-specific values listed in their definitions,
all properties defined in this specification
also accept the <a>CSS-wide keywords</a> as their property value.
For readability they have not been repeated explicitly.
<!-- Big Text: --*
█ █
█ █
████▌ ████▌ ███████
█ █
█ █
-->
<h2 id='defining-variables'>
Defining Custom Properties: the '--*' family of properties</h2>
This specification defines an open-ended set of properties called <a>custom properties</a>,
which, among other things, are used to define the [=arbitrary substitution|substitution value=] of ''var()'' functions.
<pre class='propdef'>
Name: --*
Value: <<declaration-value>>?
Initial: the [=guaranteed-invalid value=]
Applies to: all elements and all pseudo-elements (including those with restricted property lists)
Inherited: yes
Computed value: specified value with variables substituted, or the [=guaranteed-invalid value=]
Animation type: discrete
</pre>
<p class=all-media>User agents are expected to support this property on all media, including non-visual ones.</p>
A <dfn export>custom property</dfn> is any property
whose name starts with two dashes (U+002D HYPHEN-MINUS),
like '--foo'.
The <dfn><custom-property-name></dfn> production corresponds to this:
it's defined as any <<dashed-ident>>
(a valid <a>identifier</a> that starts with two dashes),
except ''--'' itself,
which is reserved for future use by CSS.
<a>Custom properties</a> are solely for use by authors and users;
CSS will never give them a meaning beyond what is presented here.
<wpt>
variable-declaration-29.html
variable-declaration-31.html
variable-declaration-32.html
variable-declaration-33.html
variable-declaration-34.html
variable-declaration-35.html
variable-declaration-36.html
variable-declaration-40.html
variable-declaration-41.html
variable-declaration-42.html
variable-empty-name-reserved.html
</wpt>
<div class='example'>
Custom properties define variables,
referenced with the ''var()'' notation,
which can be used for many purposes.
For example, a page that consistently uses a small set of colors in its design
can store the colors in custom properties
and use them with variables:
<pre>
:root {
--main-color: #06c;
--accent-color: #006;
}
/* The rest of the CSS file */
#foo h1 {
color: var(--main-color);
}
</pre>
The naming provides a mnemonic for the colors,
prevents difficult-to-spot typos in the color codes,
and if the theme colors are ever changed,
focuses the change on one simple spot
(the custom property value)
rather than requiring many edits across all stylesheets in the webpage.
</div>
Unlike other CSS properties,
custom property names are <em>not</em> [=ASCII case-insensitive=].
Instead, custom property names are only equal to each other
if they are [=identical to=] each other.
<wpt>
css-vars-custom-property-case-sensitive-001.html
</wpt>
<div class='example'>
While both '--foo' and '--FOO' are valid,
they are distinct properties --
using ''var(--foo)'' will refer to the first one,
while using ''var(--FOO)'' will refer to the second.
Perhaps more surprisingly,
<css>--foó</css> and <css>--foó</css> are distinct properties.
The first is spelled with U+00F3 (LATIN SMALL LETTER O WITH ACUTE)
while the second is spelled with an ASCII "o" followed by U+0301 (COMBINING ACUTE ACCENT),
and the "[=identical to=]" relation uses direct codepoint-by-codepoint comparison
to determine if two strings are equal,
to avoid the complexities and pitfalls of unicode normalization and locale-specific collation.
</div>
Operating systems, keyboards, or input methods
sometimes encode visually-identical text
using different codepoint sequences.
Authors are advised to choose variable names
that avoid potential confusion
or to use escapes and other means
to ensure that similar appearing sequences are identical.
See Section 2.3 in [[CHARMOD-NORM]] for examples.
<div class="example">
Developers maintaining the following CSS
might be confused why the test patch is red:
<pre>
--fijord: red;
--fijord: green;
--fijord: blue;
.test {
background-color: var(--fijord);
}
</pre>
The reason is that the first custom property
uses the character sequence
LATIN SMALL LETTER F + LATIN SMALL LETTER I + LATIN SMALL LETTER J;
the second, identical-looking one
uses the character sequence
LATIN SMALL LETTER F + LATIN SMALL LIGATURE IJ
while the third
uses the character sequence
LATIN SMALL LIGATURE FI + LATIN SMALL LETTER J.
So the CSS contains three distinct custom properties,
two of which are unused.
</div>
Custom properties are <strong>not</strong> reset by the 'all' property.
<span class='note'>We may define a property in the future that resets all variables.</span>
The <a spec=css-values>CSS-wide keywords</a> can be used in custom properties,
with the same meaning as in any another property.
<wpt>
variable-declaration-43.html
variable-declaration-44.html
variable-declaration-45.html
variable-declaration-46.html
variable-declaration-47.html
variable-declaration-56.html
variable-declaration-57.html
variable-declaration-58.html
variable-declaration-60.html
variable-definition-keywords.html
variable-css-wide-keywords.html
</wpt>
Note: That is, they're interpreted at cascaded-value time as normal,
and are not preserved as the custom property's value,
and thus are not substituted in by the corresponding variable.
Note: While this module focuses on the use of <a>custom properties</a> with the ''var()'' function to create “variables”,
they can also be used as actual custom properties,
parsed by and acted on by script.
It's expected that the CSS Extensions spec [[CSS-EXTENSIONS]]
will expand on these use-cases and make them easier to do.
Custom properties are ordinary properties,
so they can be declared on any element,
are resolved with the normal inheritance and cascade rules,
can be made conditional with ''@media'' and other conditional rules,
can be used in HTML's <code>style</code> attribute,
can be read or set using the CSSOM, etc.
<wpt>
css-vars-custom-property-inheritance.html
variable-created-document.html
variable-created-element.html
variable-cssText.html
variable-declaration-06.html
variable-definition-cascading.html
variable-external-declaration-01.html
variable-external-reference-01.html
variable-external-supports-01.html
variable-first-letter.html
variable-first-line.html
variable-pseudo-element.html
variable-reference-13.html
variable-reference-14.html
variable-reference-shorthands.html
variable-reference-visited.html
</wpt>
Notably, they can even be animated,
but since the UA has no way to interpret their contents,
they always use the "flips at 50%" behavior
that is used for any other pair of values that can't be intelligently interpolated.
However, any <a>custom property</a> used in a ''@keyframes'' rule
becomes <dfn>animation-tainted</dfn>,
which affects how it is treated when referred to via the ''var()'' function in an animation property.
<wpt>
variable-animation-from-to.html
variable-animation-over-transition.html
variable-animation-substitute-into-keyframe-shorthand.html
variable-animation-substitute-into-keyframe-transform.html
variable-animation-substitute-into-keyframe.html
variable-animation-substitute-within-keyframe-fallback.html
variable-animation-substitute-within-keyframe-multiple.html
variable-animation-substitute-within-keyframe.html
variable-animation-to-only.html
</wpt>
Note: Like any other property that animates discretely,
custom properties can't be transitioned.
[=Registered custom properties=] can, however,
if given a syntax that has non-discrete animation behavior.
[=Animation-tainted=] is "infectious":
custom properties which reference [=animation-tainted=] properties
also become [=animation-tainted=].
<div class='example'>
This style rule:
<pre>
:root {
--header-color: #06c;
}
</pre>
declares a <a>custom property</a> named '--header-color' on the root element,
and assigns to it the value "#06c".
This property is then inherited to the elements in the rest of the document.
Its value can be referenced with the ''var()'' function:
<pre>
h1 { background-color: var(--header-color); }
</pre>
The preceding rule is equivalent to writing ''background-color: #06c;'',
except that the variable name makes the origin of the color clearer,
and if ''var(--header-color)'' is used on other elements in the document,
all of the uses can be updated at once
by changing the '--header-color' property on the root element.
</div>
<div class='example'>
If a <a>custom property</a> is declared multiple times,
the standard cascade rules help resolve it.
Variables always draw from the computed value of the associated custom property on the same element:
<pre>
:root { --color: blue; }
div { --color: green; }
#alert { --color: red; }
* { color: var(--color); }
<p><span style="color: blue">I inherited blue from the root element!</span></p>
<div><span style="color: green">I got green set directly on me!</span></div>
<div id='alert'>
<span style="color: red">While I got red set directly on me!</span>
<p><span style="color: red">I'm red too, because of inheritance!</span></p>
</div>
</pre>
</div>
<div class='example'>
A real-world example of <a>custom property</a> usage
is easily separating out strings from where they're used,
to aid in maintenance of internationalization:
<pre class='lang-css'>
:root,
:root:lang(en) {--external-link: "external link";}
:root:lang(el) {--external-link: "εξωτερικός σύνδεσμος";}
a[href^="http"]::after {content: " (" var(--external-link) ")"}
</pre>
The variable declarations can even be kept in a separate file,
to make maintaining the translations simpler.
</div>
<!-- Big Text: Syntax
███▌ █ ▐▌ █ █▌ █████▌ ███▌ █ █
█▌ █▌ ▐▌ █ █▌ █▌ █▌ ▐█ ▐█ █ █
█▌ █ ▐▌ ██▌ █▌ █▌ █▌ █▌ █ █
███▌ ▐▌█ █▌▐█ █▌ █▌ █▌ █▌ █
█▌ █▌ █▌ ██▌ █▌ █████▌ █ █
█▌ █▌ █▌ █▌ █▌ █▌ █▌ █▌ █ █
███▌ █▌ █▌ ▐▌ █▌ █▌ █▌ █ █
-->
<h3 id='syntax'>
Custom Property Value Syntax</h3>
The allowed syntax for <a>custom properties</a> is extremely permissive.
The <<declaration-value>> production matches <em>any</em> sequence of one or more tokens,
so long as the sequence does not contain
<<bad-string-token>>,
<<bad-url-token>>,
unmatched <<)-token>>, <<]-token>>, or <<}-token>>,
or top-level <<semicolon-token>> tokens or <<delim-token>> tokens with a value of "!".
<wpt>
long-variable-reference-crash.html
test_variable_legal_values.html
variable-declaration-15.html
variable-declaration-24.html
variable-declaration-25.html
variable-declaration-26.html
variable-declaration-59.html
</wpt>
In addition, if the value of a <a>custom property</a> contains a ''var()'' reference,
the ''var()'' reference must be valid according to the specified ''var()'' grammar.
If not, the <a>custom property</a> is invalid and must be ignored.
Note: This definition,
along with the general CSS syntax rules,
implies that a custom property value never includes an unmatched quote or bracket,
and so cannot have any effect on larger syntax constructs,
like the enclosing style rule,
when reserialized.
Note: Custom properties can contain a trailing ''!important'',
but this is automatically removed from the property's value by the CSS parser,
and makes the custom property "important" in the CSS cascade.
In other words, the prohibition on top-level "!" characters
does not prevent ''!important'' from being used,
as the ''!important'' is removed before syntax checking happens.
<wpt>
variable-declaration-20.html
variable-declaration-23.html
</wpt>
<div class='example'>
For example, the following is a valid custom property:
<pre>
--foo: if(x > 5) this.width = 10;
</pre>
While this value is obviously useless as a <em>variable</em>,
as it would be invalid in any normal property,
it might be read and acted on by JavaScript.
</div>
The values of custom properties,
and the values of ''var()'' functions substituted into custom properties,
are <em>case-sensitive</em>,
and must be preserved in their original author-given casing.
(Many CSS values are <a>ASCII case-insensitive</a>,
which user agents can take advantage of by "canonicalizing" them into a single casing,
but that isn't allowed for custom properties.)
<wpt>
variable-declaration-38.html
variable-declaration-39.html
</wpt>
<div class=note>
Because custom properties can contain <em>anything</em>,
there is no general way to know how to interpret what's inside of them
(until they're substituted into a known property with ''var()'').
Rather than have them <em>partially</em> resolve in some cases but not others,
they're left completely unresolved;
they're a bare stream of [[css-syntax#tokenization|CSS tokens]] interspersed with ''var()'' functions.
This has some knock-on implications.
For example, relative URLs in CSS
are resolved against the base URL of the stylesheet the value appears in.
However, if a custom property like ''--my-image: url(foo.jpg);'' shows up in an <code>"/a/style.css"</code> stylesheet,
it will not resolve into an absolute URL immediately;
if that variable is later used in a <em>different</em> <code>"/b/style.css"</code> stylesheet
like ''background: var(--my-image);'',
it will resolve <em>at that point</em> to <code>"/b/foo.jpg"</code>.
</div>
<!-- Big Text: Guaranteed
███▌ █▌ █▌ ███▌ ████▌ ███▌ █ █▌ █████▌ █████▌ █████▌ ████▌
█▌ █▌ █▌ █▌ ▐█ ▐█ █▌ █▌ ▐█ ▐█ █▌ █▌ █▌ █▌ █▌ █▌ █▌
█▌ █▌ █▌ █▌ █▌ █▌ █▌ █▌ █▌ ██▌ █▌ █▌ █▌ █▌ █▌ █▌
█▌ ██▌ █▌ █▌ █▌ █▌ ████▌ █▌ █▌ █▌▐█ █▌ █▌ ████ ████ █▌ █▌
█▌ █▌ █▌ █▌ █████▌ █▌▐█ █████▌ █▌ ██▌ █▌ █▌ █▌ █▌ █▌
█▌ █▌ █▌ █▌ █▌ █▌ █▌ ▐█ █▌ █▌ █▌ █▌ █▌ █▌ █▌ █▌ █▌
███▌ ███▌ █▌ █▌ █▌ █▌ █▌ █▌ █▌ ▐▌ █▌ █████▌ █████▌ ████▌
-->
<!-- Big Text: invalid
████ █ █▌ █▌ █▌ ███▌ █▌ ████ ████▌
▐▌ █▌ █▌ █▌ █▌ ▐█ ▐█ █▌ ▐▌ █▌ █▌
▐▌ ██▌ █▌ █▌ █▌ █▌ █▌ █▌ ▐▌ █▌ █▌
▐▌ █▌▐█ █▌ ▐▌ █ █▌ █▌ █▌ ▐▌ █▌ █▌
▐▌ █▌ ██▌ █ ▐▌ █████▌ █▌ ▐▌ █▌ █▌
▐▌ █▌ █▌ ▐▌ █ █▌ █▌ █▌ ▐▌ █▌ █▌
████ █▌ ▐▌ ▐█ █▌ █▌ █████ ████ ████▌
-->
<h3 id='guaranteed-invalid'>
Guaranteed-Invalid Values</h3>
The initial value of a [=custom property=] is a <dfn export>guaranteed-invalid value</dfn>.
The [=guaranteed-invalid value=] is, well,
guaranteed to be invalid.
If it ever appears in a property value,
then at [=computed value=] time
that property becomes [=invalid at computed-value time=].
Non-property contexts will define their own behavior for the [=guaranteed-invalid value=],
but it will always be "invalid" in some sense.
The [=guaranteed-invalid value=] serializes as the empty string,
but actually writing an empty value into a custom property,
like <nobr>''--foo:;''</nobr>,
is a valid (empty) value,
not the [=guaranteed-invalid value=].
If, for whatever reason,
one wants to manually reset a [=custom property=] to the [=guaranteed-invalid value=],
using the keyword ''initial'' will do this.
Note: Other than invoking the [=initial value=]
of a non-registered [=custom property=],
the only way to create the [=guaranteed-invalid value=]
is by having an invalid [=arbitrary substitution function=].
<!-- Big Text: cycles
███▌ █ ▐▌ ███▌ █▌ █████▌ ███▌
█▌ █▌ ▐▌ █ █▌ █▌ █▌ █▌ █▌ █▌
█▌ █ ▐▌ █▌ █▌ █▌ █▌
█▌ ▐▌█ █▌ █▌ ████ ███▌
█▌ █▌ █▌ █▌ █▌ █▌
█▌ █▌ █▌ █▌ █▌ █▌ █▌ █▌ █▌
███▌ █▌ ███▌ █████ █████▌ ███▌
-->
<h3 id='cycles'>
Resolving Dependency Cycles</h3>
<a>Custom properties</a> are left almost entirely unevaluated,
except that they allow and evaluate the ''var()'' function in their value.
This can create cyclic dependencies
where a custom property uses a ''var()'' referring to itself,
or two or more <a>custom properties</a> each attempt to refer to each other.
For each element,
create a directed dependency graph,
containing nodes for each <a>custom property</a>.
If the value of a <a>custom property</a> <var>prop</var>
contains a ''var()'' function referring to the property <var>var</var>
(including in the fallback argument of ''var()''),
add an edge between <var>prop</var> and the <var>var</var>.
<span class='note'>Edges are possible from a custom property to itself.</span>
If there is a cycle in the dependency graph,
all the <a>custom properties</a> in the cycle
are [=invalid at computed-value time=].
<wpt>
variable-cycles.html
variable-declaration-30.html
variable-declaration-48.html
variable-declaration-49.html
variable-declaration-50.html
variable-reference-39.html
</wpt>
Note: Defined properties that participate in a dependency cycle
either end up with invalid variables in their value
(becoming [=invalid at computed-value time=]),
or define their own cyclic handling
(like 'font-size' using ''em'' values).
They do not compute to the [=guaranteed-invalid value=]
like custom properties do.
<div class='example'>
This example shows a custom property safely using a variable:
<pre>
:root {
--main-color: #c06;
--accent-background: linear-gradient(to top, var(--main-color), white);
}
</pre>
The '--accent-background' property
(along with any other properties that use ''var(--main-color)'')
will automatically update when the '--main-color' property is changed.
</div>
<div class='example invalid-example'>
On the other hand,
this example shows an invalid instance of variables depending on each other:
<pre>
:root {
--one: calc(var(--two) + 20px);
--two: calc(var(--one) - 20px);
}
</pre>
Both '--one' and '--two' are now [=invalid at computed-value time=],
and compute to the [=guaranteed-invalid value=]
rather than lengths.
</div>
It is important to note that
<a>custom properties</a> resolve any ''var()'' functions in their values at computed-value time,
which occurs <em>before</em> the value is inherited.
In general,
cyclic dependencies occur only when multiple custom properties on the same element refer to each other;
custom properties defined on elements higher in the element tree can never cause a cyclic reference with properties defined on elements lower in the element tree.
<wpt>
variable-declaration-51.html
variable-declaration-52.html
</wpt>
<div class='example'>
For example,
given the following structure,
these custom properties are <strong>not</strong> cyclic,
and all define valid variables:
<xmp highlight=markup>
<one><two><three /></two></one>
<style>
one { --foo: 10px; }
two { --bar: calc(var(--foo) + 10px); }
three { --foo: calc(var(--bar) + 10px); }
</style>
</xmp>
The <one> element defines a value for '--foo'.
The <two> element inherits this value,
and additionally assigns a value to '--bar' using the ''foo'' variable.
Finally,
the <three> element inherits the '--bar' value
<em>after</em> variable substitution
(in other words, it sees the value ''calc(10px + 10px)''),
and then redefines '--foo' in terms of that value.
Since the value it inherited for '--bar' no longer contains a reference to the '--foo' property defined on <one>,
defining '--foo' using the ''var(--bar)'' variable is not cyclic,
and actually defines a value that will eventually
(when referenced as a variable in a normal property)
resolve to ''30px''.
</div>
<!-- Big Text: var()
█▌ █▌ ███▌ ████▌ ██ ██
█▌ █▌ ▐█ ▐█ █▌ █▌ █▌ ▐█
█▌ █▌ █▌ █▌ █▌ █▌ █▌ ▐█
▐▌ █ █▌ █▌ ████▌ █▌ ▐█
█ ▐▌ █████▌ █▌▐█ █▌ ▐█
▐▌ █ █▌ █▌ █▌ ▐█ █▌ ▐█
▐█ █▌ █▌ █▌ █▌ ██ ██
-->
<h2 id='using-variables'>
Using Cascading Variables: the ''var()'' notation</h2>
The value of a <a>custom property</a> can be substituted into the value of another property
with the ''var()'' function.
The syntax of ''var()'' is:
<pre class='prod'>
<dfn>var()</dfn> = var( <<custom-property-name>> , <<declaration-value>>? )
</pre>
The ''var()'' function is an [=arbitrary substitution function=].
<wpt>
variable-reference-07.html
variable-reference-08.html
variable-reference-09.html
variable-reference-10.html
variable-reference-17.html
variable-reference-20.html
variable-reference-21.html
variable-reference-22.html
variable-reference-23.html
variable-reference-24.html
variable-reference-25.html
variable-reference-28.html
variable-reference-29.html
variable-reference-31.html
variable-reference-32.html
variable-reference-33.html
variable-reference-34.html
variable-reference-35.html
variable-reference.html
</wpt>
<wpt title="@supports">
variable-supports-01.html
variable-supports-02.html
variable-supports-03.html
variable-supports-04.html
variable-supports-05.html
variable-supports-06.html
variable-supports-07.html
variable-supports-08.html
variable-supports-09.html
variable-supports-10.html
variable-supports-11.html
variable-supports-12.html
variable-supports-13.html
variable-supports-14.html
variable-supports-15.html
variable-supports-16.html
variable-supports-17.html
variable-supports-18.html
variable-supports-19.html
variable-supports-20.html
variable-supports-21.html
variable-supports-22.html
variable-supports-23.html
variable-supports-24.html
variable-supports-25.html
variable-supports-26.html
variable-supports-27.html
variable-supports-28.html
variable-supports-29.html
variable-supports-30.html
variable-supports-31.html
variable-supports-32.html
variable-supports-33.html
variable-supports-34.html
variable-supports-35.html
variable-supports-36.html
variable-supports-37.html
variable-supports-38.html
variable-supports-39.html
variable-supports-40.html
variable-supports-41.html
variable-supports-42.html
variable-supports-43.html
variable-supports-44.html
variable-supports-45.html
variable-supports-46.html
variable-supports-47.html
variable-supports-48.html
variable-supports-49.html
variable-supports-50.html
variable-supports-51.html
variable-supports-52.html
variable-supports-53.html
variable-supports-54.html
variable-supports-55.html
variable-supports-56.html
variable-supports-57.html
variable-supports-58.html
variable-supports-59.html
variable-supports-60.html
variable-supports-61.html
variable-supports-62.html
variable-supports-63.html
variable-supports-64.html
variable-supports-65.html
variable-supports-66.html
variable-supports-67.html
</wpt>
The first argument to the function is the name of the <a>custom property</a> to be substituted.
The second argument to the function, if provided,
is a fallback value,
which is used as the substitution value when the value of the referenced <a>custom property</a>
is the [=guaranteed-invalid value=].
<wpt>
variable-declaration-08.html
variable-declaration-09.html
variable-declaration-10.html
variable-declaration-11.html
variable-declaration-12.html
variable-declaration-13.html
variable-declaration-22.html
</wpt>
In an exception to the usual <a grammar lt=,>comma elision rules</a>,
which require commas to be omitted when they're not separating values,
a bare comma, with nothing following it,
must be treated as valid in ''var()'',
indicating an empty fallback value.
<wpt>
variable-declaration-07.html
variable-declaration-37.html
variable-reference-06.html
variable-reference-11.html
variable-reference-26.html
variable-reference-27.html
</wpt>
Note: That is, ''var(--a,)'' is a valid function,
specifying that if the ''--a'' custom property is invalid or missing,
the ''var()'' should be replaced with nothing.
Note: The syntax of the fallback, like that of <a>custom properties</a>, allows commas.
For example, ''var(--foo, red, blue)'' defines a fallback of ''red, blue'';
that is, anything between the first comma and the end of the function is considered a fallback value.
<div class='example'>
The fallback value allows for some types of defensive coding.
For example,
an author may create a component
intended to be included in a larger application,
and use variables to style it
so that it's easy for the author of the larger application
to theme the component to match the rest of the app.
Without fallback,
the app author must supply a value for every variable that your component uses.
With fallback, the component author can supply defaults,
so the app author only needs to supply values for the variables they wish to override.
<pre>
/* In the component's style: */
.component .header {
color: var(--header-color, blue);
}
.component .text {
color: var(--text-color, black);
}
/* In the larger application's style: */
.component {
--text-color: #080;
/* header-color isn't set,
and so remains blue,
the fallback value */
}
</pre>
</div>
<div algorithm="resolve a var()">
To <dfn export>[=resolve an arbitrary substitution function|resolve a var() function=]</dfn>:
1. Let |result| be the value of the [=custom property=]
named by the function's first argument,
on the element the function's property is being applied to.
2. Let |fallback| be the value of the function's second argument,
defaulting to the [=guaranteed-invalid value=]
if it doesn't have a second argument.
3. If the [=custom property=]
named by the ''var()''’s first argument
is [=animation-tainted=],
and the ''var()'' is being used in a property that is [=not animatable=],
set |result| to the [=guaranteed-invalid value=].
4. Return |result| and |fallback|.
</div>
<!-- Big Text: units
█▌ █▌ █ █▌ ████ █████▌ ███▌
█▌ █▌ █▌ █▌ ▐▌ █▌ █▌ █▌
█▌ █▌ ██▌ █▌ ▐▌ █▌ █▌
█▌ █▌ █▌▐█ █▌ ▐▌ █▌ ███▌
█▌ █▌ █▌ ██▌ ▐▌ █▌ █▌
█▌ █▌ █▌ █▌ ▐▌ █▌ █▌ █▌
███▌ █▌ ▐▌ ████ █▌ ███▌
-->
<h3 id='variable-units'>
Variable Units</h3>
In addition to being referenced directly with the ''var()'' function,
custom properties can be referenced as custom units,
making it easy to use multiples of significant "base sizes" in a document,
perhaps established by a design system.
A [=dimension=] whose unit is a <<dashed-ident>> is a <dfn export>variable unit reference</dfn>.
It has identical effects and restrictions to using ''var()'';
the unit name is the [=custom property=] being referenced.
The only difference is during substitution--
rather than just substituting the [=custom property=] value directly,
it substitutes as ''calc(X * (var(Y)))'',
where X is numeric component of the dimension,
and Y is the unit component of the dimension.
<div class=example>
For example,
"fluid typography" sizes text according to the viewport size.
A very simple version of this can be created as:
<xmp highlight=css>
@property --fem { /* "fluid em" */
syntax: "<length>";
initial: 2vw;
inherits: true;
}
.fluid-type {
font-size: 1.2--fem;
/* equivalent to */
font-size: calc(1.2 * (var(--fem)));
}
</xmp>
More complex expressions can be used as well.
For example, fluid typography often wants to impose limits
on <em>how much</em> the size responds to the viewport,
to avoid degenerate situations
on very large or very small screens:
<xmp highlight=css>
@property --fem { /* "fluid em" */
syntax: "<length>";
initial: clamp(10px, 1vw + 1vh, 1rem);
inherits: true;
}
.fluid-type {
font-size: 1.2--fem;
/* Won't get smaller than 12px,
or larger than 1.2rem. */
}
</xmp>
As the [=variable unit reference=] is a [=custom property=] reference,
it can be overridden by setting the [=custom property=] normally.
This can be useful to specialize a component for a particular position on the page,
while still styling it generically:
<xmp highlight=css>
@property --bs { /* block size */
syntax: "<length>";
initial: 8px;
inherits: true;
}
.module {
margin-block: 1.5--bs;
border-block: .5--bs;
/* gives a vertical margin of 12px,
and vertical border of 4px */
}
.sidebar .module {
--bs: 6px;
/* Makes the components slightly more compact
in the sidebar, with a vertical margin of 9px
and a vertical border of 3px. */
}
</xmp>
</div>
Note: [=Variable unit references=] can't have fallback values,
so if the referenced [=custom property=] doesn't exist or is invalid,
the unit reference will be invalid as well.
Use ''@property'' to create a [=registered custom property=],
as the ''@property/initial''' value will instead be used
as the default.
Note: While [=variable unit references=]
clearly expect their referenced [=custom property=] to have a numeric value
(so that it's valid to substitute into a ''calc()''),
nothing enforces this.
Supplying a non-numeric value,
such as by using ''--fem: red;''
to override the initial value in the above examples,
will simply result in an invalid property after substitution,
like ''font-size: calc(1.2 * (red));''.
<!-- Big Text: cssom
███▌ ███▌ ███▌ ███▌ █ █
█▌ █▌ █▌ █▌ █▌ █▌ █▌ █▌ ██ ██
█▌ █▌ █▌ █▌ █▌ █▌█ █▐█
█▌ ███▌ ███▌ █▌ █▌ █▌ █ ▐█
█▌ █▌ █▌ █▌ █▌ █▌ ▐█
█▌ █▌ █▌ █▌ █▌ █▌ █▌ █▌ █▌ ▐█
███▌ ███▌ ███▌ ███▌ █▌ ▐█
-->
<h2 id='apis'>
APIs</h2>
All <a>custom property</a> <a>declarations</a> have the <a for="CSS declaration" spec=cssom>case-sensitive flag</a> set.
<wpt>
variable-definition.html
variable-invalidation.html
</wpt>
Note: Custom properties do not appear on a CSSStyleDeclaration object in camel-cased form,
because their names may have both upper and lowercase letters
which indicate distinct custom properties.
The sort of text transformation that automatic camel-casing performs is incompatible with this.
They can still be accessed by their proper name via <a method>getPropertyValue()</a>/etc.
<h3 id='serializing-custom-props'>
Serializing Custom Properties</h3>
Custom property names must be serialized
as the exact code point sequence provided by the author,
including not altering the case.
Note: For non-custom properties,
property names are restricted to the ASCII range and are <a>ASCII case-insensitive</a>,
so implementations typically serialize the name lowercased.
Specified values of [=custom properties=] must be serialized
<em>exactly as specified by the author</em>.
Simplifications that might occur in other properties,
such as dropping comments,
normalizing whitespace,
reserializing numeric tokens from their value,
etc.,
must not occur.