-
Notifications
You must be signed in to change notification settings - Fork 2
/
other.html
1566 lines (861 loc) · 171 KB
/
other.html
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
---
title: "Terms starting with a non-letter"
layout: base
---
<p class=legend>Color key: <code class=webidl>WebIDL</code> <code class='css'>CSS</code> <code class='markup'>Markup</code> <code class='http'>HTTP</code></p>
<dl>
<dt id="@@RequestDestination@enum-value"><code class=prefix></code><span><strong><code class=webidl>""</code></strong> (<em>value for <a href='r.html#RequestDestination@@@@enum'><code>RequestDestination</code></a> WebIDL enumeration</em>) <a class='self-link' href='#%40%40RequestDestination%40enum-value' aria-label="Permalink for ">§</a></span></dt>
<dd>Defined in <strong title=' is defined in Fetch'><a href=https://fetch.spec.whatwg.org/#dom-requestdestination>Fetch</a></strong> </dd>
<dt id="@@BackgroundFetchResult@enum-value"><code class=prefix></code><span><strong><code class=webidl>""</code></strong> (<em>value for <a href='b.html#BackgroundFetchResult@@@@enum'><code>BackgroundFetchResult</code></a> WebIDL enumeration</em>) <a class='self-link' href='#%40%40BackgroundFetchResult%40enum-value' aria-label="Permalink for ">§</a></span></dt>
<dd>Defined in <strong title=' is defined in Background Fetch'><a href=https://wicg.github.io/background-fetch/#dom-backgroundfetchresult>Background Fetch</a></strong> </dd>
<dt id="@@BackgroundFetchFailureReason@enum-value"><code class=prefix></code><span><strong><code class=webidl>""</code></strong> (<em>value for <a href='b.html#BackgroundFetchFailureReason@@@@enum'><code>BackgroundFetchFailureReason</code></a> WebIDL enumeration</em>) <a class='self-link' href='#%40%40BackgroundFetchFailureReason%40enum-value' aria-label="Permalink for ">§</a></span></dt>
<dd>Defined in <strong title=' is defined in Background Fetch'><a href=https://wicg.github.io/background-fetch/#dom-backgroundfetchfailurereason>Background Fetch</a></strong> </dd>
<dt id="@@ContentCategory@enum-value"><code class=prefix></code><span><strong><code class=webidl>""</code></strong> (<em>value for <a href='c.html#ContentCategory@@@@enum'><code>ContentCategory</code></a> WebIDL enumeration</em>) <a class='self-link' href='#%40%40ContentCategory%40enum-value' aria-label="Permalink for ">§</a></span></dt>
<dd>Defined in <strong title=' is defined in Content Index'><a href=https://wicg.github.io/content-index/spec/#dom-contentcategory>Content Index</a></strong> </dd>
<dt id="@@ReferrerPolicy@enum-value"><code class=prefix></code><span><strong><code class=webidl>""</code></strong> (<em>value for <a href='r.html#ReferrerPolicy@@@@enum'><code>ReferrerPolicy</code></a> WebIDL enumeration</em>) <a class='self-link' href='#%40%40ReferrerPolicy%40enum-value' aria-label="Permalink for ">§</a></span></dt>
<dd>Defined in <strong title=' is defined in Referrer Policy'><a href=https://w3c.github.io/webappsec-referrer-policy/#dom-referrerpolicy>Referrer Policy</a></strong> </dd>
<dt id="@@DirectionSetting@enum-value"><code class=prefix></code><span><strong><code class=webidl>""</code></strong> (<em>value for <a href='d.html#DirectionSetting@@@@enum'><code>DirectionSetting</code></a> WebIDL enumeration</em>) <a class='self-link' href='#%40%40DirectionSetting%40enum-value' aria-label="Permalink for ">§</a></span></dt>
<dd>Defined in <strong title=' is defined in WebVTT: The Web Video Text Tracks Format'><a href=https://w3c.github.io/webvtt/#dom-directionsetting>WebVTT: The Web Video Text Tracks Format</a></strong> </dd>
<dt id="@@ScrollSetting@enum-value"><code class=prefix></code><span><strong><code class=webidl>""</code></strong> (<em>value for <a href='s.html#ScrollSetting@@@@enum'><code>ScrollSetting</code></a> WebIDL enumeration</em>) <a class='self-link' href='#%40%40ScrollSetting%40enum-value' aria-label="Permalink for ">§</a></span></dt>
<dd>Defined in <strong title=' is defined in WebVTT: The Web Video Text Tracks Format'><a href=https://w3c.github.io/webvtt/#dom-scrollsetting>WebVTT: The Web Video Text Tracks Format</a></strong> </dd>
<dt id="@@XMLHttpRequestResponseType@enum-value"><code class=prefix></code><span><strong><code class=webidl>""</code></strong> (<em>value for <a href='x.html#XMLHttpRequestResponseType@@@@enum'><code>XMLHttpRequestResponseType</code></a> WebIDL enumeration</em>) <a class='self-link' href='#%40%40XMLHttpRequestResponseType%40enum-value' aria-label="Permalink for ">§</a></span></dt>
<dd>Defined in <strong title=' is defined in XMLHttpRequest'><a href=https://xhr.spec.whatwg.org/#dom-xmlhttprequestresponsetype>XMLHttpRequest</a></strong> </dd>
<dt id="__getter__(index)@@CSSKeyframesRule@method"><code class=prefix><a href='c.html#CSSKeyframesRule@@@@interface'>CSSKeyframesRule</a>.</code><span><strong><code class=webidl>__getter__(index)</code></strong> (<em>WebIDL operation</em>) <a class='self-link' href='#__getter__(index)%40%40CSSKeyframesRule%40method' aria-label="Permalink for <a href='c.html#CSSKeyframesRule@@@@interface'>CSSKeyframesRule</a>.__getter__(index)">§</a></span></dt>
<dd>Defined in <strong title='__getter__(index) is defined in CSS Animations 1'><a href=https://drafts.csswg.org/css-animations-1/#dom-csskeyframesrule-__getter__>CSS Animations 1</a></strong> </dd>
<dt id="--*@@@@property"><code class=prefix></code><span><strong><code class=css>--*</code></strong> (<em>CSS property</em>) <a class='self-link' href='#--*%40%40%40%40property' aria-label="Permalink for --*">§</a></span></dt>
<dd>Defined in <strong title='--* is defined in CSS Variables 2'><a href=https://drafts.csswg.org/css-variables-2/#propdef->CSS Variables 2</a></strong> , <strong title='--* is defined in CSS Variables 1'><a href=https://drafts.csswg.org/css-variables-1/#propdef->CSS Variables 1</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2022/ title='--* is referenced by CSS Snapshot 2022'>CSS Snapshot 2022</a>,
<a href=https://drafts.csswg.org/css-2023/ title='--* is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a></dd>
<dt id="-infinity@@calc()@value"><code class=prefix></code><span><strong><code class=css>-infinity</code></strong> (<em>CSS value for <a href='c.html#calc()@@css-values%25%25function'><code>calc()</code></a> </em>) <a class='self-link' href='#-infinity%40%40calc()%40value' aria-label="Permalink for -infinity">§</a></span></dt>
<dd>Defined in <strong title='-infinity is defined in CSS Values 4'><a href=https://drafts.csswg.org/css-values-4/#valdef-calc--infinity>CSS Values 4</a></strong> </dd>
<dt id="-webkit-align-content@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-align-content</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-align-content%40%40%40%40property' aria-label="Permalink for -webkit-align-content">§</a></span></dt>
<dd>Defined in <strong title='-webkit-align-content is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-align-content>Compatibility</a></strong> </dd>
<dt id="-webkit-align-items@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-align-items</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-align-items%40%40%40%40property' aria-label="Permalink for -webkit-align-items">§</a></span></dt>
<dd>Defined in <strong title='-webkit-align-items is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-align-items>Compatibility</a></strong> </dd>
<dt id="-webkit-align-self@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-align-self</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-align-self%40%40%40%40property' aria-label="Permalink for -webkit-align-self">§</a></span></dt>
<dd>Defined in <strong title='-webkit-align-self is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-align-self>Compatibility</a></strong> </dd>
<dt id="-webkit-animation@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-animation</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-animation%40%40%40%40property' aria-label="Permalink for -webkit-animation">§</a></span></dt>
<dd>Defined in <strong title='-webkit-animation is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-animation>Compatibility</a></strong> </dd>
<dt id="-webkit-animation-delay@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-animation-delay</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-animation-delay%40%40%40%40property' aria-label="Permalink for -webkit-animation-delay">§</a></span></dt>
<dd>Defined in <strong title='-webkit-animation-delay is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-animation-delay>Compatibility</a></strong> </dd>
<dt id="-webkit-animation-direction@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-animation-direction</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-animation-direction%40%40%40%40property' aria-label="Permalink for -webkit-animation-direction">§</a></span></dt>
<dd>Defined in <strong title='-webkit-animation-direction is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-animation-direction>Compatibility</a></strong> </dd>
<dt id="-webkit-animation-duration@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-animation-duration</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-animation-duration%40%40%40%40property' aria-label="Permalink for -webkit-animation-duration">§</a></span></dt>
<dd>Defined in <strong title='-webkit-animation-duration is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-animation-duration>Compatibility</a></strong> </dd>
<dt id="-webkit-animation-fill-mode@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-animation-fill-mode</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-animation-fill-mode%40%40%40%40property' aria-label="Permalink for -webkit-animation-fill-mode">§</a></span></dt>
<dd>Defined in <strong title='-webkit-animation-fill-mode is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-animation-fill-mode>Compatibility</a></strong> </dd>
<dt id="-webkit-animation-iteration-count@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-animation-iteration-count</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-animation-iteration-count%40%40%40%40property' aria-label="Permalink for -webkit-animation-iteration-count">§</a></span></dt>
<dd>Defined in <strong title='-webkit-animation-iteration-count is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-animation-iteration-count>Compatibility</a></strong> </dd>
<dt id="-webkit-animation-name@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-animation-name</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-animation-name%40%40%40%40property' aria-label="Permalink for -webkit-animation-name">§</a></span></dt>
<dd>Defined in <strong title='-webkit-animation-name is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-animation-name>Compatibility</a></strong> </dd>
<dt id="-webkit-animation-play-state@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-animation-play-state</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-animation-play-state%40%40%40%40property' aria-label="Permalink for -webkit-animation-play-state">§</a></span></dt>
<dd>Defined in <strong title='-webkit-animation-play-state is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-animation-play-state>Compatibility</a></strong> </dd>
<dt id="-webkit-animation-timing-function@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-animation-timing-function</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-animation-timing-function%40%40%40%40property' aria-label="Permalink for -webkit-animation-timing-function">§</a></span></dt>
<dd>Defined in <strong title='-webkit-animation-timing-function is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-animation-timing-function>Compatibility</a></strong> </dd>
<dt id="-webkit-app-region@@manifest-incubations%%dfn"><code class=prefix></code><span><strong>-webkit-app-region</strong> (<em>concept</em>) <a class='self-link' href='#-webkit-app-region%40%40manifest-incubations%25%25dfn' aria-label="Permalink for -webkit-app-region">§</a></span></dt>
<dd>Defined in <strong title='-webkit-app-region is defined in Manifest Incubations'><a href=https://wicg.github.io/manifest-incubations/#dfn-webkit-app-region>Manifest Incubations</a></strong> </dd>
<dt id="-webkit-appearance@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-appearance</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-appearance%40%40%40%40property' aria-label="Permalink for -webkit-appearance">§</a></span></dt>
<dd>Defined in <strong title='-webkit-appearance is defined in CSS User Interface 4'><a href=https://drafts.csswg.org/css-ui-4/#propdef--webkit-appearance>CSS User Interface 4</a></strong> </dd>
<dd>Referenced in
<a href=https://compat.spec.whatwg.org/ title='-webkit-appearance is referenced by Compatibility'>Compatibility</a></dd>
<dt id="-webkit-backface-visibility@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-backface-visibility</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-backface-visibility%40%40%40%40property' aria-label="Permalink for -webkit-backface-visibility">§</a></span></dt>
<dd>Defined in <strong title='-webkit-backface-visibility is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-backface-visibility>Compatibility</a></strong> </dd>
<dt id="-webkit-background-clip@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-background-clip</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-background-clip%40%40%40%40property' aria-label="Permalink for -webkit-background-clip">§</a></span></dt>
<dd>Defined in <strong title='-webkit-background-clip is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-background-clip>Compatibility</a></strong> </dd>
<dt id="-webkit-background-origin@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-background-origin</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-background-origin%40%40%40%40property' aria-label="Permalink for -webkit-background-origin">§</a></span></dt>
<dd>Defined in <strong title='-webkit-background-origin is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-background-origin>Compatibility</a></strong> </dd>
<dt id="-webkit-background-size@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-background-size</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-background-size%40%40%40%40property' aria-label="Permalink for -webkit-background-size">§</a></span></dt>
<dd>Defined in <strong title='-webkit-background-size is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-background-size>Compatibility</a></strong> </dd>
<dt id="-webkit-border-bottom-left-radius@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-border-bottom-left-radius</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-border-bottom-left-radius%40%40%40%40property' aria-label="Permalink for -webkit-border-bottom-left-radius">§</a></span></dt>
<dd>Defined in <strong title='-webkit-border-bottom-left-radius is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-border-bottom-left-radius>Compatibility</a></strong> </dd>
<dt id="-webkit-border-bottom-right-radius@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-border-bottom-right-radius</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-border-bottom-right-radius%40%40%40%40property' aria-label="Permalink for -webkit-border-bottom-right-radius">§</a></span></dt>
<dd>Defined in <strong title='-webkit-border-bottom-right-radius is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-border-bottom-right-radius>Compatibility</a></strong> </dd>
<dt id="-webkit-border-radius@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-border-radius</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-border-radius%40%40%40%40property' aria-label="Permalink for -webkit-border-radius">§</a></span></dt>
<dd>Defined in <strong title='-webkit-border-radius is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-border-radius>Compatibility</a></strong> </dd>
<dt id="-webkit-border-top-left-radius@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-border-top-left-radius</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-border-top-left-radius%40%40%40%40property' aria-label="Permalink for -webkit-border-top-left-radius">§</a></span></dt>
<dd>Defined in <strong title='-webkit-border-top-left-radius is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-border-top-left-radius>Compatibility</a></strong> </dd>
<dt id="-webkit-border-top-right-radius@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-border-top-right-radius</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-border-top-right-radius%40%40%40%40property' aria-label="Permalink for -webkit-border-top-right-radius">§</a></span></dt>
<dd>Defined in <strong title='-webkit-border-top-right-radius is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-border-top-right-radius>Compatibility</a></strong> </dd>
<dt id="-webkit-box@@flex@value"><code class=prefix></code><span><strong><code class=css>-webkit-box</code></strong> (<em>CSS value for <a href='f.html#flex@@@@property'><code>flex</code></a> </em>) <a class='self-link' href='#-webkit-box%40%40flex%40value' aria-label="Permalink for -webkit-box">§</a></span></dt>
<dd>Defined in <strong title='-webkit-box is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#valdef-flex--webkit-box>Compatibility</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-overflow-4/ title='-webkit-box is referenced by CSS Overflow 4'>CSS Overflow 4</a></dd>
<dt id="-webkit-box-align@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-box-align</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-box-align%40%40%40%40property' aria-label="Permalink for -webkit-box-align">§</a></span></dt>
<dd>Defined in <strong title='-webkit-box-align is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-box-align>Compatibility</a></strong> </dd>
<dt id="-webkit-box-flex@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-box-flex</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-box-flex%40%40%40%40property' aria-label="Permalink for -webkit-box-flex">§</a></span></dt>
<dd>Defined in <strong title='-webkit-box-flex is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-box-flex>Compatibility</a></strong> </dd>
<dt id="-webkit-box-ordinal-group@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-box-ordinal-group</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-box-ordinal-group%40%40%40%40property' aria-label="Permalink for -webkit-box-ordinal-group">§</a></span></dt>
<dd>Defined in <strong title='-webkit-box-ordinal-group is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-box-ordinal-group>Compatibility</a></strong> </dd>
<dt id="-webkit-box-orient@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-box-orient</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-box-orient%40%40%40%40property' aria-label="Permalink for -webkit-box-orient">§</a></span></dt>
<dd>Defined in <strong title='-webkit-box-orient is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-box-orient>Compatibility</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-overflow-4/ title='-webkit-box-orient is referenced by CSS Overflow 4'>CSS Overflow 4</a></dd>
<dt id="-webkit-box-pack@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-box-pack</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-box-pack%40%40%40%40property' aria-label="Permalink for -webkit-box-pack">§</a></span></dt>
<dd>Defined in <strong title='-webkit-box-pack is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-box-pack>Compatibility</a></strong> </dd>
<dt id="-webkit-box-shadow@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-box-shadow</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-box-shadow%40%40%40%40property' aria-label="Permalink for -webkit-box-shadow">§</a></span></dt>
<dd>Defined in <strong title='-webkit-box-shadow is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-box-shadow>Compatibility</a></strong> </dd>
<dt id="-webkit-box-sizing@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-box-sizing</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-box-sizing%40%40%40%40property' aria-label="Permalink for -webkit-box-sizing">§</a></span></dt>
<dd>Defined in <strong title='-webkit-box-sizing is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-box-sizing>Compatibility</a></strong> </dd>
<dt id="-webkit-device-pixel-ratio@@@media@descriptor"><code class=prefix></code><span><strong><code class=css>-webkit-device-pixel-ratio</code></strong> (<em>CSS descriptor for <a href='m.html#@media@@@@at-rule'><code>@media</code></a> </em>) <a class='self-link' href='#-webkit-device-pixel-ratio%40%40%40media%40descriptor' aria-label="Permalink for -webkit-device-pixel-ratio">§</a></span></dt>
<dd>Defined in <strong title='-webkit-device-pixel-ratio is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#descdef-media--webkit-device-pixel-ratio>Compatibility</a></strong> </dd>
<dt id="-webkit-discard@@continue@value"><code class=prefix></code><span><strong><code class=css>-webkit-discard</code></strong> (<em>CSS value for <a href='c.html#continue@@@@property'><code>continue</code></a> </em>) <a class='self-link' href='#-webkit-discard%40%40continue%40value' aria-label="Permalink for -webkit-discard">§</a></span></dt>
<dd>Defined in <strong title='-webkit-discard is defined in CSS Overflow 4'><a href=https://drafts.csswg.org/css-overflow-4/#valdef-continue--webkit-discard>CSS Overflow 4</a></strong> </dd>
<dt id="-webkit-filter@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-filter</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-filter%40%40%40%40property' aria-label="Permalink for -webkit-filter">§</a></span></dt>
<dd>Defined in <strong title='-webkit-filter is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-filter>Compatibility</a></strong> </dd>
<dt id="-webkit-flex@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-flex</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-flex%40%40%40%40property' aria-label="Permalink for -webkit-flex">§</a></span></dt>
<dd>Defined in <strong title='-webkit-flex is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-flex-propdef>Compatibility</a></strong> </dd>
<dt id="-webkit-flex@@flex@value"><code class=prefix></code><span><strong><code class=css>-webkit-flex</code></strong> (<em>CSS value for <a href='f.html#flex@@@@property'><code>flex</code></a> </em>) <a class='self-link' href='#-webkit-flex%40%40flex%40value' aria-label="Permalink for -webkit-flex">§</a></span></dt>
<dd>Defined in <strong title='-webkit-flex is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#valdef-flex--webkit-flex-valdef>Compatibility</a></strong> </dd>
<dt id="-webkit-flex-basis@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-flex-basis</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-flex-basis%40%40%40%40property' aria-label="Permalink for -webkit-flex-basis">§</a></span></dt>
<dd>Defined in <strong title='-webkit-flex-basis is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-flex-basis>Compatibility</a></strong> </dd>
<dt id="-webkit-flex-direction@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-flex-direction</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-flex-direction%40%40%40%40property' aria-label="Permalink for -webkit-flex-direction">§</a></span></dt>
<dd>Defined in <strong title='-webkit-flex-direction is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-flex-direction>Compatibility</a></strong> </dd>
<dt id="-webkit-flex-flow@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-flex-flow</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-flex-flow%40%40%40%40property' aria-label="Permalink for -webkit-flex-flow">§</a></span></dt>
<dd>Defined in <strong title='-webkit-flex-flow is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-flex-flow>Compatibility</a></strong> </dd>
<dt id="-webkit-flex-grow@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-flex-grow</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-flex-grow%40%40%40%40property' aria-label="Permalink for -webkit-flex-grow">§</a></span></dt>
<dd>Defined in <strong title='-webkit-flex-grow is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-flex-grow>Compatibility</a></strong> </dd>
<dt id="-webkit-flex-shrink@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-flex-shrink</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-flex-shrink%40%40%40%40property' aria-label="Permalink for -webkit-flex-shrink">§</a></span></dt>
<dd>Defined in <strong title='-webkit-flex-shrink is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-flex-shrink>Compatibility</a></strong> </dd>
<dt id="-webkit-flex-wrap@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-flex-wrap</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-flex-wrap%40%40%40%40property' aria-label="Permalink for -webkit-flex-wrap">§</a></span></dt>
<dd>Defined in <strong title='-webkit-flex-wrap is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-flex-wrap>Compatibility</a></strong> </dd>
<dt id="-webkit-image-set()@@css-images%%function"><code class=prefix></code><span><strong><code class=css>-webkit-image-set()</code></strong> (<em>CSS function</em>) <a class='self-link' href='#-webkit-image-set()%40%40css-images%25%25function' aria-label="Permalink for -webkit-image-set()">§</a></span></dt>
<dd>Defined in <strong title='-webkit-image-set() is defined in CSS Images 4'><a href=https://drafts.csswg.org/css-images-4/#funcdef--webkit-image-set>CSS Images 4</a></strong> </dd>
<dt id="-webkit-inline-box@@flex@value"><code class=prefix></code><span><strong><code class=css>-webkit-inline-box</code></strong> (<em>CSS value for <a href='f.html#flex@@@@property'><code>flex</code></a> </em>) <a class='self-link' href='#-webkit-inline-box%40%40flex%40value' aria-label="Permalink for -webkit-inline-box">§</a></span></dt>
<dd>Defined in <strong title='-webkit-inline-box is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#valdef-flex--webkit-inline-box>Compatibility</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-overflow-4/ title='-webkit-inline-box is referenced by CSS Overflow 4'>CSS Overflow 4</a></dd>
<dt id="-webkit-inline-flex@@flex@value"><code class=prefix></code><span><strong><code class=css>-webkit-inline-flex</code></strong> (<em>CSS value for <a href='f.html#flex@@@@property'><code>flex</code></a> </em>) <a class='self-link' href='#-webkit-inline-flex%40%40flex%40value' aria-label="Permalink for -webkit-inline-flex">§</a></span></dt>
<dd>Defined in <strong title='-webkit-inline-flex is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#valdef-flex--webkit-inline-flex>Compatibility</a></strong> </dd>
<dt id="-webkit-justify-content@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-justify-content</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-justify-content%40%40%40%40property' aria-label="Permalink for -webkit-justify-content">§</a></span></dt>
<dd>Defined in <strong title='-webkit-justify-content is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-justify-content>Compatibility</a></strong> </dd>
<dt id="@-webkit-keyframes@@@@at-rule"><code class=prefix></code><span><strong><code class=css>@-webkit-keyframes</code></strong> (<em>CSS @rule</em>) <a class='self-link' href='#%40-webkit-keyframes%40%40%40%40at-rule' aria-label="Permalink for @-webkit-keyframes">§</a></span></dt>
<dd>Defined in <strong title='@-webkit-keyframes is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#at-ruledef--webkit-keyframes>Compatibility</a></strong> </dd>
<dt id="-webkit-line-clamp@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-line-clamp</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-line-clamp%40%40%40%40property' aria-label="Permalink for -webkit-line-clamp">§</a></span></dt>
<dd>Defined in <strong title='-webkit-line-clamp is defined in CSS Overflow 4'><a href=https://drafts.csswg.org/css-overflow-4/#propdef--webkit-line-clamp>CSS Overflow 4</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-overflow-3/ title='-webkit-line-clamp is referenced by CSS Overflow 3'>CSS Overflow 3</a></dd>
<dt id="-webkit-linear-gradient()@@compat%%dfn"><code class=prefix></code><span><strong>-webkit-linear-gradient()</strong> (<em>concept</em>) <a class='self-link' href='#-webkit-linear-gradient()%40%40compat%25%25dfn' aria-label="Permalink for -webkit-linear-gradient()">§</a></span></dt>
<dd>Defined in <strong title='-webkit-linear-gradient() is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#-webkit-linear-gradient>Compatibility</a></strong> </dd>
<dt id="-webkit-mask@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-mask</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-mask%40%40%40%40property' aria-label="Permalink for -webkit-mask">§</a></span></dt>
<dd>Defined in <strong title='-webkit-mask is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-mask>Compatibility</a></strong> </dd>
<dt id="-webkit-mask-box-image@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-mask-box-image</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-mask-box-image%40%40%40%40property' aria-label="Permalink for -webkit-mask-box-image">§</a></span></dt>
<dd>Defined in <strong title='-webkit-mask-box-image is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-mask-box-image>Compatibility</a></strong> </dd>
<dt id="-webkit-mask-box-image-outset@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-mask-box-image-outset</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-mask-box-image-outset%40%40%40%40property' aria-label="Permalink for -webkit-mask-box-image-outset">§</a></span></dt>
<dd>Defined in <strong title='-webkit-mask-box-image-outset is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-mask-box-image-outset>Compatibility</a></strong> </dd>
<dt id="-webkit-mask-box-image-repeat@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-mask-box-image-repeat</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-mask-box-image-repeat%40%40%40%40property' aria-label="Permalink for -webkit-mask-box-image-repeat">§</a></span></dt>
<dd>Defined in <strong title='-webkit-mask-box-image-repeat is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-mask-box-image-repeat>Compatibility</a></strong> </dd>
<dt id="-webkit-mask-box-image-slice@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-mask-box-image-slice</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-mask-box-image-slice%40%40%40%40property' aria-label="Permalink for -webkit-mask-box-image-slice">§</a></span></dt>
<dd>Defined in <strong title='-webkit-mask-box-image-slice is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-mask-box-image-slice>Compatibility</a></strong> </dd>
<dt id="-webkit-mask-box-image-source@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-mask-box-image-source</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-mask-box-image-source%40%40%40%40property' aria-label="Permalink for -webkit-mask-box-image-source">§</a></span></dt>
<dd>Defined in <strong title='-webkit-mask-box-image-source is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-mask-box-image-source>Compatibility</a></strong> </dd>
<dt id="-webkit-mask-box-image-width@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-mask-box-image-width</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-mask-box-image-width%40%40%40%40property' aria-label="Permalink for -webkit-mask-box-image-width">§</a></span></dt>
<dd>Defined in <strong title='-webkit-mask-box-image-width is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-mask-box-image-width>Compatibility</a></strong> </dd>
<dt id="-webkit-mask-clip@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-mask-clip</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-mask-clip%40%40%40%40property' aria-label="Permalink for -webkit-mask-clip">§</a></span></dt>
<dd>Defined in <strong title='-webkit-mask-clip is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-mask-clip>Compatibility</a></strong> </dd>
<dt id="-webkit-mask-composite@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-mask-composite</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-mask-composite%40%40%40%40property' aria-label="Permalink for -webkit-mask-composite">§</a></span></dt>
<dd>Defined in <strong title='-webkit-mask-composite is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-mask-composite>Compatibility</a></strong> </dd>
<dt id="-webkit-mask-image@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-mask-image</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-mask-image%40%40%40%40property' aria-label="Permalink for -webkit-mask-image">§</a></span></dt>
<dd>Defined in <strong title='-webkit-mask-image is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-mask-image>Compatibility</a></strong> </dd>
<dt id="-webkit-mask-origin@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-mask-origin</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-mask-origin%40%40%40%40property' aria-label="Permalink for -webkit-mask-origin">§</a></span></dt>
<dd>Defined in <strong title='-webkit-mask-origin is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-mask-origin>Compatibility</a></strong> </dd>
<dt id="-webkit-mask-position@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-mask-position</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-mask-position%40%40%40%40property' aria-label="Permalink for -webkit-mask-position">§</a></span></dt>
<dd>Defined in <strong title='-webkit-mask-position is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-mask-position>Compatibility</a></strong> </dd>
<dt id="-webkit-mask-repeat@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-mask-repeat</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-mask-repeat%40%40%40%40property' aria-label="Permalink for -webkit-mask-repeat">§</a></span></dt>
<dd>Defined in <strong title='-webkit-mask-repeat is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-mask-repeat>Compatibility</a></strong> </dd>
<dt id="-webkit-mask-size@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-mask-size</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-mask-size%40%40%40%40property' aria-label="Permalink for -webkit-mask-size">§</a></span></dt>
<dd>Defined in <strong title='-webkit-mask-size is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-mask-size>Compatibility</a></strong> </dd>
<dt id="-webkit-max-device-pixel-ratio@@@media@descriptor"><code class=prefix></code><span><strong><code class=css>-webkit-max-device-pixel-ratio</code></strong> (<em>CSS descriptor for <a href='m.html#@media@@@@at-rule'><code>@media</code></a> </em>) <a class='self-link' href='#-webkit-max-device-pixel-ratio%40%40%40media%40descriptor' aria-label="Permalink for -webkit-max-device-pixel-ratio">§</a></span></dt>
<dd>Defined in <strong title='-webkit-max-device-pixel-ratio is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#descdef-media--webkit-max-device-pixel-ratio>Compatibility</a></strong> </dd>
<dt id="-webkit-min-device-pixel-ratio@@@media@descriptor"><code class=prefix></code><span><strong><code class=css>-webkit-min-device-pixel-ratio</code></strong> (<em>CSS descriptor for <a href='m.html#@media@@@@at-rule'><code>@media</code></a> </em>) <a class='self-link' href='#-webkit-min-device-pixel-ratio%40%40%40media%40descriptor' aria-label="Permalink for -webkit-min-device-pixel-ratio">§</a></span></dt>
<dd>Defined in <strong title='-webkit-min-device-pixel-ratio is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#descdef-media--webkit-min-device-pixel-ratio>Compatibility</a></strong> </dd>
<dt id="-webkit-order@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-order</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-order%40%40%40%40property' aria-label="Permalink for -webkit-order">§</a></span></dt>
<dd>Defined in <strong title='-webkit-order is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-order>Compatibility</a></strong> </dd>
<dt id="-webkit-perspective@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-perspective</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-perspective%40%40%40%40property' aria-label="Permalink for -webkit-perspective">§</a></span></dt>
<dd>Defined in <strong title='-webkit-perspective is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-perspective>Compatibility</a></strong> </dd>
<dt id="-webkit-perspective-origin@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-perspective-origin</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-perspective-origin%40%40%40%40property' aria-label="Permalink for -webkit-perspective-origin">§</a></span></dt>
<dd>Defined in <strong title='-webkit-perspective-origin is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-perspective-origin>Compatibility</a></strong> </dd>
<dt id="-webkit-radial-gradient()@@compat%%dfn"><code class=prefix></code><span><strong>-webkit-radial-gradient()</strong> (<em>concept</em>) <a class='self-link' href='#-webkit-radial-gradient()%40%40compat%25%25dfn' aria-label="Permalink for -webkit-radial-gradient()">§</a></span></dt>
<dd>Defined in <strong title='-webkit-radial-gradient() is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#-webkit-radial-gradient>Compatibility</a></strong> </dd>
<dt id="-webkit-repeating-linear-gradient()@@compat%%dfn"><code class=prefix></code><span><strong>-webkit-repeating-linear-gradient()</strong> (<em>concept</em>) <a class='self-link' href='#-webkit-repeating-linear-gradient()%40%40compat%25%25dfn' aria-label="Permalink for -webkit-repeating-linear-gradient()">§</a></span></dt>
<dd>Defined in <strong title='-webkit-repeating-linear-gradient() is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#-webkit-repeating-linear-gradient>Compatibility</a></strong> </dd>
<dt id="-webkit-repeating-radial-gradient()@@compat%%dfn"><code class=prefix></code><span><strong>-webkit-repeating-radial-gradient()</strong> (<em>concept</em>) <a class='self-link' href='#-webkit-repeating-radial-gradient()%40%40compat%25%25dfn' aria-label="Permalink for -webkit-repeating-radial-gradient()">§</a></span></dt>
<dd>Defined in <strong title='-webkit-repeating-radial-gradient() is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#-webkit-repeating-radial-gradient>Compatibility</a></strong> </dd>
<dt id="-webkit-text-fill-color@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-text-fill-color</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-text-fill-color%40%40%40%40property' aria-label="Permalink for -webkit-text-fill-color">§</a></span></dt>
<dd>Defined in <strong title='-webkit-text-fill-color is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-text-fill-color>Compatibility</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-pseudo-4/ title='-webkit-text-fill-color is referenced by CSS Pseudo-Elements 4'>CSS Pseudo-Elements 4</a></dd>
<dt id="-webkit-text-size-adjust@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-text-size-adjust</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-text-size-adjust%40%40%40%40property' aria-label="Permalink for -webkit-text-size-adjust">§</a></span></dt>
<dd>Defined in <strong title='-webkit-text-size-adjust is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-text-size-adjust>Compatibility</a></strong> </dd>
<dt id="-webkit-text-stroke@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-text-stroke</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-text-stroke%40%40%40%40property' aria-label="Permalink for -webkit-text-stroke">§</a></span></dt>
<dd>Defined in <strong title='-webkit-text-stroke is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-text-stroke>Compatibility</a></strong> </dd>
<dt id="-webkit-text-stroke-color@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-text-stroke-color</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-text-stroke-color%40%40%40%40property' aria-label="Permalink for -webkit-text-stroke-color">§</a></span></dt>
<dd>Defined in <strong title='-webkit-text-stroke-color is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-text-stroke-color>Compatibility</a></strong> </dd>
<dt id="-webkit-text-stroke-width@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-text-stroke-width</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-text-stroke-width%40%40%40%40property' aria-label="Permalink for -webkit-text-stroke-width">§</a></span></dt>
<dd>Defined in <strong title='-webkit-text-stroke-width is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-text-stroke-width>Compatibility</a></strong> </dd>
<dt id="-webkit-transform@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-transform</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-transform%40%40%40%40property' aria-label="Permalink for -webkit-transform">§</a></span></dt>
<dd>Defined in <strong title='-webkit-transform is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-transform>Compatibility</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/cssom-1/ title='-webkit-transform is referenced by CSSOM'>CSSOM</a></dd>
<dt id="-webkit-transform-3d@@@media@descriptor"><code class=prefix></code><span><strong><code class=css>-webkit-transform-3d</code></strong> (<em>CSS descriptor for <a href='m.html#@media@@@@at-rule'><code>@media</code></a> </em>) <a class='self-link' href='#-webkit-transform-3d%40%40%40media%40descriptor' aria-label="Permalink for -webkit-transform-3d">§</a></span></dt>
<dd>Defined in <strong title='-webkit-transform-3d is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#descdef-media--webkit-transform-3d>Compatibility</a></strong> </dd>
<dt id="-webkit-transform-origin@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-transform-origin</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-transform-origin%40%40%40%40property' aria-label="Permalink for -webkit-transform-origin">§</a></span></dt>
<dd>Defined in <strong title='-webkit-transform-origin is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-transform-origin>Compatibility</a></strong> </dd>
<dt id="-webkit-transform-style@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-transform-style</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-transform-style%40%40%40%40property' aria-label="Permalink for -webkit-transform-style">§</a></span></dt>
<dd>Defined in <strong title='-webkit-transform-style is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-transform-style>Compatibility</a></strong> </dd>
<dt id="-webkit-transition@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-transition</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-transition%40%40%40%40property' aria-label="Permalink for -webkit-transition">§</a></span></dt>
<dd>Defined in <strong title='-webkit-transition is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-transition>Compatibility</a></strong> </dd>
<dt id="-webkit-transition-delay@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-transition-delay</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-transition-delay%40%40%40%40property' aria-label="Permalink for -webkit-transition-delay">§</a></span></dt>
<dd>Defined in <strong title='-webkit-transition-delay is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-transition-delay>Compatibility</a></strong> </dd>
<dt id="-webkit-transition-duration@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-transition-duration</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-transition-duration%40%40%40%40property' aria-label="Permalink for -webkit-transition-duration">§</a></span></dt>
<dd>Defined in <strong title='-webkit-transition-duration is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-transition-duration>Compatibility</a></strong> </dd>
<dt id="-webkit-transition-property@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-transition-property</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-transition-property%40%40%40%40property' aria-label="Permalink for -webkit-transition-property">§</a></span></dt>
<dd>Defined in <strong title='-webkit-transition-property is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-transition-property>Compatibility</a></strong> </dd>
<dt id="-webkit-transition-timing-function@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-transition-timing-function</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-transition-timing-function%40%40%40%40property' aria-label="Permalink for -webkit-transition-timing-function">§</a></span></dt>
<dd>Defined in <strong title='-webkit-transition-timing-function is defined in Compatibility'><a href=https://compat.spec.whatwg.org/#propdef--webkit-transition-timing-function>Compatibility</a></strong> </dd>
<dt id="-webkit-user-select@@@@property"><code class=prefix></code><span><strong><code class=css>-webkit-user-select</code></strong> (<em>CSS property</em>) <a class='self-link' href='#-webkit-user-select%40%40%40%40property' aria-label="Permalink for -webkit-user-select">§</a></span></dt>
<dd>Defined in <strong title='-webkit-user-select is defined in CSS User Interface 4'><a href=https://drafts.csswg.org/css-ui-4/#propdef--webkit-user-select>CSS User Interface 4</a></strong> </dd>
<dt id=",@@css-values%%grammar"><code class=prefix></code><span><strong><code class=grammar>,</code></strong> (<em>grammar</em>) <a class='self-link' href='#%2C%40%40css-values%25%25grammar' aria-label="Permalink for ,">§</a></span></dt>
<dd>Defined in <strong title=', is defined in CSS Values 3'><a href=https://drafts.csswg.org/css-values-3/#comb-comma>CSS Values 3</a></strong> , <strong title=', is defined in CSS Values 4'><a href=https://drafts.csswg.org/css-values-4/#comb-comma>CSS Values 4</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-color-6/ title=', is referenced by CSS Color 6'>CSS Color 6</a>,
<a href=https://drafts.csswg.org/css-conditional-values-1/ title=', is referenced by CSS Conditional Values 1'>CSS Conditional Values 1</a>,
<a href=https://drafts.csswg.org/css-env-1/ title=', is referenced by CSS Environment Variables 1'>CSS Environment Variables 1</a>,
<a href=https://drafts.csswg.org/css-gcpm-4/ title=', is referenced by CSS GCPM 4'>CSS GCPM 4</a>,
<a href=https://drafts.csswg.org/css-shapes-2/ title=', is referenced by CSS Shapes 2'>CSS Shapes 2</a>,
<a href=https://drafts.csswg.org/css-variables-2/ title=', is referenced by CSS Variables 2'>CSS Variables 2</a>,
<a href=https://drafts.csswg.org/css-anchor-position-1/ title=', is referenced by CSS Anchor Positioning'>CSS Anchor Positioning</a>,
<a href=https://drafts.csswg.org/css-backgrounds-3/ title=', is referenced by CSS Backgrounds 3'>CSS Backgrounds 3</a>,
<a href=https://drafts.csswg.org/css-color-4/ title=', is referenced by CSS Color 4'>CSS Color 4</a>,
<a href=https://drafts.csswg.org/css-color-5/ title=', is referenced by CSS Color 5'>CSS Color 5</a>,
<a href=https://drafts.csswg.org/css-content-3/ title=', is referenced by CSS Generated Content 3'>CSS Generated Content 3</a>,
<a href=https://drafts.csswg.org/css-easing-1/ title=', is referenced by CSS Easing Functions 1'>CSS Easing Functions 1</a>,
<a href=https://drafts.csswg.org/css-easing-2/ title=', is referenced by CSS Easing Functions 2'>CSS Easing Functions 2</a>,
<a href=https://drafts.csswg.org/css-fonts-4/ title=', is referenced by CSS Fonts 4'>CSS Fonts 4</a>,
<a href=https://drafts.csswg.org/css-grid-1/ title=', is referenced by CSS Grid Layout 1'>CSS Grid Layout 1</a>,
<a href=https://drafts.csswg.org/css-grid-2/ title=', is referenced by CSS Grid Layout 2'>CSS Grid Layout 2</a>,
<a href=https://drafts.csswg.org/css-images-3/ title=', is referenced by CSS Images 3'>CSS Images 3</a>,
<a href=https://drafts.csswg.org/css-lists-3/ title=', is referenced by CSS Lists 3'>CSS Lists 3</a>,
<a href=https://drafts.csswg.org/css-page-floats-3/ title=', is referenced by CSS Page Floats'>CSS Page Floats</a>,
<a href=https://drafts.css-houdini.org/css-paint-api-1/ title=', is referenced by CSS Painting API 1'>CSS Painting API 1</a>,
<a href=https://drafts.csswg.org/css-shapes-1/ title=', is referenced by CSS Shapes 1'>CSS Shapes 1</a>,
<a href=https://drafts.csswg.org/css-speech-1/ title=', is referenced by CSS Speech 1'>CSS Speech 1</a>,
<a href=https://drafts.csswg.org/css-transforms-1/ title=', is referenced by CSS Transforms 1'>CSS Transforms 1</a>,
<a href=https://drafts.csswg.org/css-transforms-2/ title=', is referenced by CSS Transforms 2'>CSS Transforms 2</a>,
<a href=https://drafts.csswg.org/css-variables-1/ title=', is referenced by CSS Variables 1'>CSS Variables 1</a>,
<a href=https://drafts.csswg.org/css-writing-modes-4/ title=', is referenced by CSS Writing Modes 4'>CSS Writing Modes 4</a>,
<a href=https://drafts.fxtf.org/filter-effects-1/ title=', is referenced by Filter Effects 1'>Filter Effects 1</a></dd>
<dt id=",@@CSS%%grammar"><code class=prefix></code><span><strong><code class=grammar>,</code></strong> (<em>grammar</em>) <a class='self-link' href='#%2C%40%40CSS%25%25grammar' aria-label="Permalink for ,">§</a></span></dt>
<dd>Defined in <strong title=', is defined in CSS 2.2'><a href=https://drafts.csswg.org/css2/#comb-comma>CSS 2.2</a></strong> </dd>
<dt id="!@@css-values%%grammar"><code class=prefix></code><span><strong><code class=grammar>!</code></strong> (<em>grammar</em>) <a class='self-link' href='#!%40%40css-values%25%25grammar' aria-label="Permalink for !">§</a></span></dt>
<dd>Defined in <strong title='! is defined in CSS Values 3'><a href=https://drafts.csswg.org/css-values-3/#mult-req>CSS Values 3</a></strong> , <strong title='! is defined in CSS Values 4'><a href=https://drafts.csswg.org/css-values-4/#mult-req>CSS Values 4</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-backgrounds-4/ title='! is referenced by CSS Backgrounds 4'>CSS Backgrounds 4</a>,
<a href=https://drafts.csswg.org/css-conditional-5/ title='! is referenced by CSS Conditional 5'>CSS Conditional 5</a>,
<a href=https://drafts.csswg.org/css-inline-3/ title='! is referenced by CSS Inline Layout 3'>CSS Inline Layout 3</a>,
<a href=https://drafts.csswg.org/css-page-3/ title='! is referenced by CSS Paged Media 3'>CSS Paged Media 3</a>,
<a href=https://drafts.csswg.org/selectors-4/ title='! is referenced by Selectors 4'>Selectors 4</a></dd>
<dt id="?@@css-values%%grammar"><code class=prefix></code><span><strong><code class=grammar>?</code></strong> (<em>grammar</em>) <a class='self-link' href='#%3F%40%40css-values%25%25grammar' aria-label="Permalink for ?">§</a></span></dt>
<dd>Defined in <strong title='? is defined in CSS Values 3'><a href=https://drafts.csswg.org/css-values-3/#mult-opt>CSS Values 3</a></strong> , <strong title='? is defined in CSS Values 4'><a href=https://drafts.csswg.org/css-values-4/#mult-opt>CSS Values 4</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-backgrounds-4/ title='? is referenced by CSS Backgrounds 4'>CSS Backgrounds 4</a>,
<a href=https://drafts.csswg.org/css-borders-4/ title='? is referenced by CSS Borders and Box Decorations 4'>CSS Borders and Box Decorations 4</a>,
<a href=https://drafts.csswg.org/css-color-6/ title='? is referenced by CSS Color 6'>CSS Color 6</a>,
<a href=https://drafts.csswg.org/css-color-hdr-1/ title='? is referenced by CSS Color HDR 1'>CSS Color HDR 1</a>,
<a href=https://drafts.csswg.org/css-conditional-values-1/ title='? is referenced by CSS Conditional Values 1'>CSS Conditional Values 1</a>,
<a href=https://drafts.csswg.org/css-display-4/ title='? is referenced by CSS Display 4'>CSS Display 4</a>,
<a href=https://drafts.csswg.org/css-env-1/ title='? is referenced by CSS Environment Variables 1'>CSS Environment Variables 1</a>,
<a href=https://drafts.csswg.org/css-extensions-1/ title='? is referenced by CSS Extensions'>CSS Extensions</a>,
<a href=https://drafts.csswg.org/css-gcpm-4/ title='? is referenced by CSS GCPM 4'>CSS GCPM 4</a>,
<a href=https://drafts.csswg.org/css-link-params-1/ title='? is referenced by CSS Linked Parameters'>CSS Linked Parameters</a>,
<a href=https://drafts.csswg.org/css-mixins-1/ title='? is referenced by CSS Functions and Mixins'>CSS Functions and Mixins</a>,
<a href=https://drafts.csswg.org/css-shapes-2/ title='? is referenced by CSS Shapes 2'>CSS Shapes 2</a>,
<a href=https://drafts.csswg.org/css-variables-2/ title='? is referenced by CSS Variables 2'>CSS Variables 2</a>,
<a href=https://drafts.csswg.org/css-align-3/ title='? is referenced by CSS Box Alignment 3'>CSS Box Alignment 3</a>,
<a href=https://drafts.csswg.org/css-anchor-position-1/ title='? is referenced by CSS Anchor Positioning'>CSS Anchor Positioning</a>,
<a href=https://drafts.csswg.org/css-backgrounds-3/ title='? is referenced by CSS Backgrounds 3'>CSS Backgrounds 3</a>,
<a href=https://drafts.csswg.org/css-cascade-3/ title='? is referenced by CSS Cascading 3'>CSS Cascading 3</a>,
<a href=https://drafts.csswg.org/css-cascade-4/ title='? is referenced by CSS Cascading 4'>CSS Cascading 4</a>,
<a href=https://drafts.csswg.org/css-cascade-5/ title='? is referenced by CSS Cascading 5'>CSS Cascading 5</a>,
<a href=https://drafts.csswg.org/css-cascade-6/ title='? is referenced by CSS Cascading 6'>CSS Cascading 6</a>,
<a href=https://drafts.csswg.org/css-color-4/ title='? is referenced by CSS Color 4'>CSS Color 4</a>,
<a href=https://drafts.csswg.org/css-color-5/ title='? is referenced by CSS Color 5'>CSS Color 5</a>,
<a href=https://drafts.csswg.org/css-color-adjust-1/ title='? is referenced by CSS Color Adjustment 1'>CSS Color Adjustment 1</a>,
<a href=https://drafts.csswg.org/css-conditional-5/ title='? is referenced by CSS Conditional 5'>CSS Conditional 5</a>,
<a href=https://drafts.csswg.org/css-content-3/ title='? is referenced by CSS Generated Content 3'>CSS Generated Content 3</a>,
<a href=https://drafts.csswg.org/css-counter-styles-3/ title='? is referenced by CSS Counter Styles 3'>CSS Counter Styles 3</a>,
<a href=https://drafts.csswg.org/css-easing-1/ title='? is referenced by CSS Easing Functions 1'>CSS Easing Functions 1</a>,
<a href=https://drafts.csswg.org/css-easing-2/ title='? is referenced by CSS Easing Functions 2'>CSS Easing Functions 2</a>,
<a href=https://drafts.csswg.org/css-flexbox-1/ title='? is referenced by CSS Flexbox 1'>CSS Flexbox 1</a>,
<a href=https://drafts.csswg.org/css-fonts-4/ title='? is referenced by CSS Fonts 4'>CSS Fonts 4</a>,
<a href=https://drafts.csswg.org/css-fonts-5/ title='? is referenced by CSS Fonts 5'>CSS Fonts 5</a>,
<a href=https://drafts.csswg.org/css-grid-1/ title='? is referenced by CSS Grid Layout 1'>CSS Grid Layout 1</a>,
<a href=https://drafts.csswg.org/css-grid-2/ title='? is referenced by CSS Grid Layout 2'>CSS Grid Layout 2</a>,
<a href=https://drafts.csswg.org/css-grid-3/ title='? is referenced by CSS Grid Layout 3'>CSS Grid Layout 3</a>,
<a href=https://drafts.csswg.org/css-images-3/ title='? is referenced by CSS Images 3'>CSS Images 3</a>,
<a href=https://drafts.csswg.org/css-inline-3/ title='? is referenced by CSS Inline Layout 3'>CSS Inline Layout 3</a>,
<a href=https://drafts.csswg.org/css-lists-3/ title='? is referenced by CSS Lists 3'>CSS Lists 3</a>,
<a href=https://drafts.csswg.org/css-logical-1/ title='? is referenced by CSS Logical Properties 1'>CSS Logical Properties 1</a>,
<a href=https://drafts.csswg.org/css-overflow-3/ title='? is referenced by CSS Overflow 3'>CSS Overflow 3</a>,
<a href=https://drafts.csswg.org/css-overflow-4/ title='? is referenced by CSS Overflow 4'>CSS Overflow 4</a>,
<a href=https://drafts.csswg.org/css-page-3/ title='? is referenced by CSS Paged Media 3'>CSS Paged Media 3</a>,
<a href=https://drafts.csswg.org/css-page-floats-3/ title='? is referenced by CSS Page Floats'>CSS Page Floats</a>,
<a href=https://drafts.css-houdini.org/css-paint-api-1/ title='? is referenced by CSS Painting API 1'>CSS Painting API 1</a>,
<a href=https://drafts.css-houdini.org/css-properties-values-api-1/ title='? is referenced by CSS Properties and Values API 1'>CSS Properties and Values API 1</a>,
<a href=https://drafts.csswg.org/css-regions-1/ title='? is referenced by CSS Regions 1'>CSS Regions 1</a>,
<a href=https://drafts.csswg.org/css-scroll-snap-1/ title='? is referenced by CSS Scroll Snap 1'>CSS Scroll Snap 1</a>,
<a href=https://drafts.csswg.org/css-shapes-1/ title='? is referenced by CSS Shapes 1'>CSS Shapes 1</a>,
<a href=https://drafts.csswg.org/css-sizing-4/ title='? is referenced by CSS Sizing 4'>CSS Sizing 4</a>,
<a href=https://drafts.csswg.org/css-speech-1/ title='? is referenced by CSS Speech 1'>CSS Speech 1</a>,
<a href=https://drafts.csswg.org/css-syntax-3/ title='? is referenced by CSS Syntax 3'>CSS Syntax 3</a>,
<a href=https://drafts.csswg.org/css-text-3/ title='? is referenced by CSS Text 3'>CSS Text 3</a>,
<a href=https://drafts.csswg.org/css-text-4/ title='? is referenced by CSS Text 4'>CSS Text 4</a>,
<a href=https://drafts.csswg.org/css-text-decor-3/ title='? is referenced by CSS Text Decoration 3'>CSS Text Decoration 3</a>,
<a href=https://drafts.csswg.org/css-text-decor-4/ title='? is referenced by CSS Text Decoration 4'>CSS Text Decoration 4</a>,
<a href=https://drafts.csswg.org/css-transforms-1/ title='? is referenced by CSS Transforms 1'>CSS Transforms 1</a>,
<a href=https://drafts.csswg.org/css-transforms-2/ title='? is referenced by CSS Transforms 2'>CSS Transforms 2</a>,
<a href=https://drafts.csswg.org/css-ui-4/ title='? is referenced by CSS User Interface 4'>CSS User Interface 4</a>,
<a href=https://drafts.csswg.org/css-variables-1/ title='? is referenced by CSS Variables 1'>CSS Variables 1</a>,
<a href=https://drafts.csswg.org/css-view-transitions-2/ title='? is referenced by CSS View Transitions 2'>CSS View Transitions 2</a>,
<a href=https://drafts.csswg.org/css-writing-modes-4/ title='? is referenced by CSS Writing Modes 4'>CSS Writing Modes 4</a>,
<a href=https://drafts.fxtf.org/filter-effects-1/ title='? is referenced by Filter Effects 1'>Filter Effects 1</a>,
<a href=https://drafts.csswg.org/mediaqueries-4/ title='? is referenced by Media Queries 4'>Media Queries 4</a>,
<a href=https://drafts.csswg.org/scroll-animations-1/ title='? is referenced by Scroll-driven Animations'>Scroll-driven Animations</a>,
<a href=https://drafts.csswg.org/selectors-4/ title='? is referenced by Selectors 4'>Selectors 4</a></dd>
<dt id="?@@CSS%%grammar"><code class=prefix></code><span><strong><code class=grammar>?</code></strong> (<em>grammar</em>) <a class='self-link' href='#%3F%40%40CSS%25%25grammar' aria-label="Permalink for ?">§</a></span></dt>
<dd>Defined in <strong title='? is defined in CSS 2.2'><a href=https://drafts.csswg.org/css2/#mult-opt>CSS 2.2</a></strong> </dd>
<dt id="<(-token>@@@@type"><code class=prefix></code><span><strong><code class=css><(-token></code></strong> (<em>CSS type</em>) <a class='self-link' href='#%3C(-token%3E%40%40%40%40type' aria-label="Permalink for <(-token>">§</a></span></dt>
<dd>Defined in <strong title='<(-token> is defined in CSS Syntax 3'><a href=https://drafts.csswg.org/css-syntax-3/#tokendef-open-paren>CSS Syntax 3</a></strong> </dd>
<dt id="()-block@@CSS@dfn"><code class=prefix></code><span><strong>()-block</strong> (<em>concept for <code>CSS</code> </em>) <a class='self-link' href='#()-block%40%40CSS%40dfn' aria-label="Permalink for ()-block">§</a></span></dt>
<dd>Defined in <strong title='()-block is defined in CSS Syntax 3'><a href=https://drafts.csswg.org/css-syntax-3/#paren-block>CSS Syntax 3</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2022/ title='()-block is referenced by CSS Snapshot 2022'>CSS Snapshot 2022</a>,
<a href=https://drafts.csswg.org/css-2023/ title='()-block is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a></dd>
<dt id="<)-token>@@@@type"><code class=prefix></code><span><strong><code class=css><)-token></code></strong> (<em>CSS type</em>) <a class='self-link' href='#%3C)-token%3E%40%40%40%40type' aria-label="Permalink for <)-token>">§</a></span></dt>
<dd>Defined in <strong title='<)-token> is defined in CSS Syntax 3'><a href=https://drafts.csswg.org/css-syntax-3/#tokendef-close-paren>CSS Syntax 3</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-variables-2/ title='<)-token> is referenced by CSS Variables 2'>CSS Variables 2</a>,
<a href=https://drafts.csswg.org/css-variables-1/ title='<)-token> is referenced by CSS Variables 1'>CSS Variables 1</a></dd>
<dt id="[ <integer [-∞,-1]> | <integer [1,∞]> ] && <custom-ident>?@@<grid-line>@value"><code class=prefix></code><span><strong><code class=css>[ <integer [-∞,-1]> | <integer [1,∞]> ] && <custom-ident>?</code></strong> (<em>CSS value for <a href='g.html#<grid-line>@@grid-column-end@type'><code><grid-line></code></a> </em>) <a class='self-link' href='#%5B%20%3Cinteger%20%5B-%E2%88%9E%2C-1%5D%3E%20%7C%20%3Cinteger%20%5B1%2C%E2%88%9E%5D%3E%20%5D%20%26%26%20%3Ccustom-ident%3E%3F%40%40%3Cgrid-line%3E%40value' aria-label="Permalink for [ <integer [-∞,-1]> | <integer [1,∞]> ] && <custom-ident>?">§</a></span></dt>
<dd>Defined in <strong title='[ <integer [-∞,-1]> | <integer [1,∞]> ] && <custom-ident>? is defined in CSS Grid Layout 1'><a href=https://drafts.csswg.org/css-grid-1/#grid-placement-int>CSS Grid Layout 1</a></strong> , <strong title='[ <integer [-∞,-1]> | <integer [1,∞]> ] && <custom-ident>? is defined in CSS Grid Layout 2'><a href=https://drafts.csswg.org/css-grid-2/#grid-placement-int>CSS Grid Layout 2</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2022/ title='[ <integer [-∞,-1]> | <integer [1,∞]> ] && <custom-ident>? is referenced by CSS Snapshot 2022'>CSS Snapshot 2022</a>,
<a href=https://drafts.csswg.org/css-2023/ title='[ <integer [-∞,-1]> | <integer [1,∞]> ] && <custom-ident>? is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a></dd>
<dt id="[ <line-names>? <string> <track-size>? <line-names>? ]+ [ / <explicit-track-list> ]?@@grid-template@value"><code class=prefix></code><span><strong><code class=css>[ <line-names>? <string> <track-size>? <line-names>? ]+ [ / <explicit-track-list> ]?</code></strong> (<em>CSS value for <a href='g.html#grid-template@@@@property'><code>grid-template</code></a> </em>) <a class='self-link' href='#%5B%20%3Cline-names%3E%3F%20%3Cstring%3E%20%3Ctrack-size%3E%3F%20%3Cline-names%3E%3F%20%5D%2B%20%5B%20%2F%20%3Cexplicit-track-list%3E%20%5D%3F%40%40grid-template%40value' aria-label="Permalink for [ <line-names>? <string> <track-size>? <line-names>? ]+ [ / <explicit-track-list> ]?">§</a></span></dt>
<dd>Defined in <strong title='[ <line-names>? <string> <track-size>? <line-names>? ]+ [ / <explicit-track-list> ]? is defined in CSS Grid Layout 1'><a href=https://drafts.csswg.org/css-grid-1/#grid-template-ascii>CSS Grid Layout 1</a></strong> , <strong title='[ <line-names>? <string> <track-size>? <line-names>? ]+ [ / <explicit-track-list> ]? is defined in CSS Grid Layout 2'><a href=https://drafts.csswg.org/css-grid-2/#grid-template-ascii>CSS Grid Layout 2</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2022/ title='[ <line-names>? <string> <track-size>? <line-names>? ]+ [ / <explicit-track-list> ]? is referenced by CSS Snapshot 2022'>CSS Snapshot 2022</a>,
<a href=https://drafts.csswg.org/css-2023/ title='[ <line-names>? <string> <track-size>? <line-names>? ]+ [ / <explicit-track-list> ]? is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a></dd>
<dt id="[ auto-flow && dense? ] <'grid-auto-rows'>? / <'grid-template-columns'>@@grid@value"><code class=prefix></code><span><strong><code class=css>[ auto-flow && dense? ] <'grid-auto-rows'>? / <'grid-template-columns'></code></strong> (<em>CSS value for <code>grid</code> </em>) <a class='self-link' href='#%5B%20auto-flow%20%26%26%20dense%3F%20%5D%20%3C'grid-auto-rows'%3E%3F%20%2F%20%3C'grid-template-columns'%3E%40%40grid%40value' aria-label="Permalink for [ auto-flow && dense? ] <'grid-auto-rows'>? / <'grid-template-columns'>">§</a></span></dt>
<dd>Defined in <strong title='[ auto-flow && dense? ] <'grid-auto-rows'>? / <'grid-template-columns'> is defined in CSS Grid Layout 1'><a href=https://drafts.csswg.org/css-grid-1/#grid-s-auto-column>CSS Grid Layout 1</a></strong> , <strong title='[ auto-flow && dense? ] <'grid-auto-rows'>? / <'grid-template-columns'> is defined in CSS Grid Layout 2'><a href=https://drafts.csswg.org/css-grid-2/#grid-s-auto-column>CSS Grid Layout 2</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2022/ title='[ auto-flow && dense? ] <'grid-auto-rows'>? / <'grid-template-columns'> is referenced by CSS Snapshot 2022'>CSS Snapshot 2022</a>,
<a href=https://drafts.csswg.org/css-2023/ title='[ auto-flow && dense? ] <'grid-auto-rows'>? / <'grid-template-columns'> is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a></dd>
<dt id="<[-token>@@@@type"><code class=prefix></code><span><strong><code class=css><[-token></code></strong> (<em>CSS type</em>) <a class='self-link' href='#%3C%5B-token%3E%40%40%40%40type' aria-label="Permalink for <[-token>">§</a></span></dt>
<dd>Defined in <strong title='<[-token> is defined in CSS Syntax 3'><a href=https://drafts.csswg.org/css-syntax-3/#tokendef-open-square>CSS Syntax 3</a></strong> </dd>
<dt id="[]-block@@CSS@dfn"><code class=prefix></code><span><strong>[]-block</strong> (<em>concept for <code>CSS</code> </em>) <a class='self-link' href='#%5B%5D-block%40%40CSS%40dfn' aria-label="Permalink for []-block">§</a></span></dt>
<dd>Defined in <strong title='[]-block is defined in CSS Syntax 3'><a href=https://drafts.csswg.org/css-syntax-3/#square-block>CSS Syntax 3</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2022/ title='[]-block is referenced by CSS Snapshot 2022'>CSS Snapshot 2022</a>,
<a href=https://drafts.csswg.org/css-2023/ title='[]-block is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a></dd>
<dt id="[<string> <string>]+@@quotes@value"><code class=prefix></code><span><strong><code class=css>[<string> <string>]+</code></strong> (<em>CSS value for <a href='q.html#quotes@@@@property'><code>quotes</code></a> </em>) <a class='self-link' href='#%5B%3Cstring%3E%20%3Cstring%3E%5D%2B%40%40quotes%40value' aria-label="Permalink for [<string> <string>]+">§</a></span></dt>
<dd>Defined in <strong title='[<string> <string>]+ is defined in CSS 2.2'><a href=https://drafts.csswg.org/css2/#valdef-quotes-strings>CSS 2.2</a></strong> </dd>
<dt id="[DelayWhilePrerendering]@@@@extended-attribute"><code class=prefix></code><span><strong><code class=webidl>[DelayWhilePrerendering]</code></strong> (<em>WebIDL extended attribute</em>) <a class='self-link' href='#%5BDelayWhilePrerendering%5D%40%40%40%40extended-attribute' aria-label="Permalink for [DelayWhilePrerendering]">§</a></span></dt>
<dd>Defined in <strong title='[DelayWhilePrerendering] is defined in Prerendering Revamped'><a href=https://wicg.github.io/nav-speculation/prerendering.html#extendedattrdef-delaywhileprerendering>Prerendering Revamped</a></strong> </dd>
<dt id="<]-token>@@@@type"><code class=prefix></code><span><strong><code class=css><]-token></code></strong> (<em>CSS type</em>) <a class='self-link' href='#%3C%5D-token%3E%40%40%40%40type' aria-label="Permalink for <]-token>">§</a></span></dt>
<dd>Defined in <strong title='<]-token> is defined in CSS Syntax 3'><a href=https://drafts.csswg.org/css-syntax-3/#tokendef-close-square>CSS Syntax 3</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-variables-2/ title='<]-token> is referenced by CSS Variables 2'>CSS Variables 2</a>,
<a href=https://drafts.csswg.org/css-variables-1/ title='<]-token> is referenced by CSS Variables 1'>CSS Variables 1</a></dd>
<dt id="<{-token>@@@@type"><code class=prefix></code><span><strong><code class=css><{-token></code></strong> (<em>CSS type</em>) <a class='self-link' href='#%3C%7B-token%3E%40%40%40%40type' aria-label="Permalink for <{-token>">§</a></span></dt>
<dd>Defined in <strong title='<{-token> is defined in CSS Syntax 3'><a href=https://drafts.csswg.org/css-syntax-3/#tokendef-open-curly>CSS Syntax 3</a></strong> </dd>
<dt id="{}-block@@CSS@dfn"><code class=prefix></code><span><strong>{}-block</strong> (<em>concept for <code>CSS</code> </em>) <a class='self-link' href='#%7B%7D-block%40%40CSS%40dfn' aria-label="Permalink for {}-block">§</a></span></dt>
<dd>Defined in <strong title='{}-block is defined in CSS Syntax 3'><a href=https://drafts.csswg.org/css-syntax-3/#curly-block>CSS Syntax 3</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2022/ title='{}-block is referenced by CSS Snapshot 2022'>CSS Snapshot 2022</a>,
<a href=https://drafts.csswg.org/css-2023/ title='{}-block is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a></dd>
<dt id="{A,B}@@css-values%%grammar"><code class=prefix></code><span><strong><code class=grammar>{A,B}</code></strong> (<em>grammar</em>) <a class='self-link' href='#%7BA%2CB%7D%40%40css-values%25%25grammar' aria-label="Permalink for {A,B}">§</a></span></dt>
<dd>Defined in <strong title='{A,B} is defined in CSS Values 3'><a href=https://drafts.csswg.org/css-values-3/#mult-num-range>CSS Values 3</a></strong> , <strong title='{A,B} is defined in CSS Values 4'><a href=https://drafts.csswg.org/css-values-4/#mult-num-range>CSS Values 4</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-backgrounds-4/ title='{A,B} is referenced by CSS Backgrounds 4'>CSS Backgrounds 4</a>,
<a href=https://drafts.csswg.org/css-borders-4/ title='{A,B} is referenced by CSS Borders and Box Decorations 4'>CSS Borders and Box Decorations 4</a>,
<a href=https://drafts.csswg.org/css-shapes-2/ title='{A,B} is referenced by CSS Shapes 2'>CSS Shapes 2</a>,
<a href=https://drafts.csswg.org/css-anchor-position-1/ title='{A,B} is referenced by CSS Anchor Positioning'>CSS Anchor Positioning</a>,
<a href=https://drafts.csswg.org/css-backgrounds-3/ title='{A,B} is referenced by CSS Backgrounds 3'>CSS Backgrounds 3</a>,
<a href=https://drafts.csswg.org/css-box-4/ title='{A,B} is referenced by CSS Box Model 4'>CSS Box Model 4</a>,
<a href=https://drafts.csswg.org/css-easing-2/ title='{A,B} is referenced by CSS Easing Functions 2'>CSS Easing Functions 2</a>,
<a href=https://drafts.csswg.org/css-fonts-4/ title='{A,B} is referenced by CSS Fonts 4'>CSS Fonts 4</a>,
<a href=https://drafts.csswg.org/css-fonts-5/ title='{A,B} is referenced by CSS Fonts 5'>CSS Fonts 5</a>,
<a href=https://drafts.csswg.org/css-grid-1/ title='{A,B} is referenced by CSS Grid Layout 1'>CSS Grid Layout 1</a>,
<a href=https://drafts.csswg.org/css-grid-2/ title='{A,B} is referenced by CSS Grid Layout 2'>CSS Grid Layout 2</a>,
<a href=https://drafts.csswg.org/css-logical-1/ title='{A,B} is referenced by CSS Logical Properties 1'>CSS Logical Properties 1</a>,
<a href=https://drafts.csswg.org/css-overflow-3/ title='{A,B} is referenced by CSS Overflow 3'>CSS Overflow 3</a>,
<a href=https://drafts.csswg.org/css-overflow-4/ title='{A,B} is referenced by CSS Overflow 4'>CSS Overflow 4</a>,
<a href=https://drafts.csswg.org/css-overscroll-1/ title='{A,B} is referenced by CSS Overscroll Behavior 1'>CSS Overscroll Behavior 1</a>,
<a href=https://drafts.csswg.org/css-page-3/ title='{A,B} is referenced by CSS Paged Media 3'>CSS Paged Media 3</a>,
<a href=https://drafts.csswg.org/css-position-3/ title='{A,B} is referenced by CSS Positioned Layout 3'>CSS Positioned Layout 3</a>,
<a href=https://drafts.csswg.org/css-scroll-snap-1/ title='{A,B} is referenced by CSS Scroll Snap 1'>CSS Scroll Snap 1</a>,
<a href=https://drafts.csswg.org/css-shapes-1/ title='{A,B} is referenced by CSS Shapes 1'>CSS Shapes 1</a>,
<a href=https://drafts.csswg.org/css-sizing-4/ title='{A,B} is referenced by CSS Sizing 4'>CSS Sizing 4</a>,
<a href=https://drafts.csswg.org/css-tables-3/ title='{A,B} is referenced by CSS Table 3'>CSS Table 3</a>,
<a href=https://drafts.csswg.org/css-text-4/ title='{A,B} is referenced by CSS Text 4'>CSS Text 4</a>,
<a href=https://drafts.csswg.org/css-text-decor-3/ title='{A,B} is referenced by CSS Text Decoration 3'>CSS Text Decoration 3</a>,
<a href=https://drafts.csswg.org/css-text-decor-4/ title='{A,B} is referenced by CSS Text Decoration 4'>CSS Text Decoration 4</a>,
<a href=https://drafts.csswg.org/css-transforms-2/ title='{A,B} is referenced by CSS Transforms 2'>CSS Transforms 2</a>,
<a href=https://drafts.fxtf.org/filter-effects-1/ title='{A,B} is referenced by Filter Effects 1'>Filter Effects 1</a>,
<a href=https://drafts.csswg.org/scroll-animations-1/ title='{A,B} is referenced by Scroll-driven Animations'>Scroll-driven Animations</a></dd>
<dt id="{A,B}@@CSS%%grammar"><code class=prefix></code><span><strong><code class=grammar>{A,B}</code></strong> (<em>grammar</em>) <a class='self-link' href='#%7BA%2CB%7D%40%40CSS%25%25grammar' aria-label="Permalink for {A,B}">§</a></span></dt>
<dd>Defined in <strong title='{A,B} is defined in CSS 2.2'><a href=https://drafts.csswg.org/css2/#mult-num-range>CSS 2.2</a></strong> </dd>
<dt id="{A}@@css-values%%grammar"><code class=prefix></code><span><strong><code class=grammar>{A}</code></strong> (<em>grammar</em>) <a class='self-link' href='#%7BA%7D%40%40css-values%25%25grammar' aria-label="Permalink for {A}">§</a></span></dt>
<dd>Defined in <strong title='{A} is defined in CSS Values 3'><a href=https://drafts.csswg.org/css-values-3/#mult-num>CSS Values 3</a></strong> , <strong title='{A} is defined in CSS Values 4'><a href=https://drafts.csswg.org/css-values-4/#mult-num>CSS Values 4</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-borders-4/ title='{A} is referenced by CSS Borders and Box Decorations 4'>CSS Borders and Box Decorations 4</a>,
<a href=https://drafts.csswg.org/css-color-hdr-1/ title='{A} is referenced by CSS Color HDR 1'>CSS Color HDR 1</a>,
<a href=https://drafts.csswg.org/css-shapes-2/ title='{A} is referenced by CSS Shapes 2'>CSS Shapes 2</a>,
<a href=https://drafts.csswg.org/css-backgrounds-3/ title='{A} is referenced by CSS Backgrounds 3'>CSS Backgrounds 3</a>,
<a href=https://drafts.csswg.org/css-color-4/ title='{A} is referenced by CSS Color 4'>CSS Color 4</a>,
<a href=https://drafts.csswg.org/css-color-5/ title='{A} is referenced by CSS Color 5'>CSS Color 5</a>,
<a href=https://drafts.csswg.org/css-counter-styles-3/ title='{A} is referenced by CSS Counter Styles 3'>CSS Counter Styles 3</a>,
<a href=https://drafts.csswg.org/css-images-3/ title='{A} is referenced by CSS Images 3'>CSS Images 3</a>,
<a href=https://drafts.csswg.org/css-scrollbars-1/ title='{A} is referenced by CSS Scrollbars Styling 1'>CSS Scrollbars Styling 1</a>,
<a href=https://drafts.csswg.org/css-shapes-1/ title='{A} is referenced by CSS Shapes 1'>CSS Shapes 1</a>,
<a href=https://drafts.csswg.org/css-transforms-2/ title='{A} is referenced by CSS Transforms 2'>CSS Transforms 2</a></dd>
<dt id="<}-token>@@@@type"><code class=prefix></code><span><strong><code class=css><}-token></code></strong> (<em>CSS type</em>) <a class='self-link' href='#%3C%7D-token%3E%40%40%40%40type' aria-label="Permalink for <}-token>">§</a></span></dt>
<dd>Defined in <strong title='<}-token> is defined in CSS Syntax 3'><a href=https://drafts.csswg.org/css-syntax-3/#tokendef-close-curly>CSS Syntax 3</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-variables-2/ title='<}-token> is referenced by CSS Variables 2'>CSS Variables 2</a>,
<a href=https://drafts.csswg.org/css-variables-1/ title='<}-token> is referenced by CSS Variables 1'>CSS Variables 1</a></dd>
<dt id="*@@clear-site-data%%grammar"><code class=prefix></code><span><strong><code class=grammar>*</code></strong> (<em>grammar</em>) <a class='self-link' href='#*%40%40clear-site-data%25%25grammar' aria-label="Permalink for *">§</a></span></dt>
<dd>Defined in <strong title='* is defined in Clear Site Data'><a href=https://w3c.github.io/webappsec-clear-site-data/#grammardef->Clear Site Data</a></strong> </dd>
<dt id="*@@css-values%%grammar"><code class=prefix></code><span><strong><code class=grammar>*</code></strong> (<em>grammar</em>) <a class='self-link' href='#*%40%40css-values%25%25grammar' aria-label="Permalink for *">§</a></span></dt>
<dd>Defined in <strong title='* is defined in CSS Values 3'><a href=https://drafts.csswg.org/css-values-3/#mult-zero-plus>CSS Values 3</a></strong> , <strong title='* is defined in CSS Values 4'><a href=https://drafts.csswg.org/css-values-4/#mult-zero-plus>CSS Values 4</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-conditional-values-1/ title='* is referenced by CSS Conditional Values 1'>CSS Conditional Values 1</a>,
<a href=https://drafts.csswg.org/css-env-1/ title='* is referenced by CSS Environment Variables 1'>CSS Environment Variables 1</a>,
<a href=https://drafts.csswg.org/css-gcpm-4/ title='* is referenced by CSS GCPM 4'>CSS GCPM 4</a>,
<a href=https://drafts.csswg.org/css-mixins-1/ title='* is referenced by CSS Functions and Mixins'>CSS Functions and Mixins</a>,
<a href=https://w3c.github.io/webappsec-cspee/ title='* is referenced by Content Security Policy: Embedded Enforcement'>Content Security Policy: Embedded Enforcement</a>,
<a href=https://drafts.csswg.org/css-cascade-5/ title='* is referenced by CSS Cascading 5'>CSS Cascading 5</a>,
<a href=https://drafts.csswg.org/css-conditional-3/ title='* is referenced by CSS Conditional 3'>CSS Conditional 3</a>,
<a href=https://drafts.csswg.org/css-conditional-5/ title='* is referenced by CSS Conditional 5'>CSS Conditional 5</a>,
<a href=https://drafts.csswg.org/css-grid-1/ title='* is referenced by CSS Grid Layout 1'>CSS Grid Layout 1</a>,
<a href=https://drafts.csswg.org/css-grid-2/ title='* is referenced by CSS Grid Layout 2'>CSS Grid Layout 2</a>,
<a href=https://drafts.csswg.org/css-grid-3/ title='* is referenced by CSS Grid Layout 3'>CSS Grid Layout 3</a>,
<a href=https://drafts.csswg.org/css-page-3/ title='* is referenced by CSS Paged Media 3'>CSS Paged Media 3</a>,
<a href=https://drafts.csswg.org/css-speech-1/ title='* is referenced by CSS Speech 1'>CSS Speech 1</a>,
<a href=https://drafts.csswg.org/selectors-4/ title='* is referenced by Selectors 4'>Selectors 4</a></dd>
<dt id="*@@CSS%%grammar"><code class=prefix></code><span><strong><code class=grammar>*</code></strong> (<em>grammar</em>) <a class='self-link' href='#*%40%40CSS%25%25grammar' aria-label="Permalink for *">§</a></span></dt>
<dd>Defined in <strong title='* is defined in CSS 2.2'><a href=https://drafts.csswg.org/css2/#mult-zero-plus>CSS 2.2</a></strong> </dd>
<dt id="*@@default allowlist@dfn"><code class=prefix></code><span><strong>*</strong> (<em>concept for <a href='d.html#default allowlist@@policy-controlled feature@dfn'>default allowlist</a> </em>) <a class='self-link' href='#*%40%40default%20allowlist%40dfn' aria-label="Permalink for *">§</a></span></dt>
<dd>Defined in <strong title='* is defined in Permissions Policy'><a href=https://w3c.github.io/webappsec-permissions-policy/#default-allowlist>Permissions Policy</a></strong> </dd>
<dd>Referenced in
<a href=https://wicg.github.io/attribution-reporting-api/ title='* is referenced by Attribution Reporting'>Attribution Reporting</a>,
<a href=https://wicg.github.io/digital-goods/ title='* is referenced by Digital Goods API'>Digital Goods API</a>,
<a href=https://wicg.github.io/keyboard-map/ title='* is referenced by Keyboard Map'>Keyboard Map</a>,
<a href=https://wicg.github.io/page-lifecycle/ title='* is referenced by Page Lifecycle'>Page Lifecycle</a>,
<a href=https://wicg.github.io/web-otp/ title='* is referenced by WebOTP API'>WebOTP API</a>,
<a href=https://w3c.github.io/mediasession/ title='* is referenced by Media Session'>Media Session</a></dd>
<dt id="*@@@@selector"><code class=prefix></code><span><strong><code class=css>*</code></strong> (<em>CSS selector</em>) <a class='self-link' href='#*%40%40%40%40selector' aria-label="Permalink for *">§</a></span></dt>
<dd>Defined in <strong title='* is defined in Selectors 3'><a href=https://drafts.csswg.org/selectors-3/#x>Selectors 3</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2022/ title='* is referenced by CSS Snapshot 2022'>CSS Snapshot 2022</a>,
<a href=https://drafts.csswg.org/css-2023/ title='* is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a>,
<a href=https://drafts.csswg.org/css-pseudo-4/ title='* is referenced by CSS Pseudo-Elements 4'>CSS Pseudo-Elements 4</a>,
<a href=https://drafts.csswg.org/css-scoping-1/ title='* is referenced by CSS Scoping 1'>CSS Scoping 1</a>,
<a href=https://drafts.csswg.org/css-values-3/ title='* is referenced by CSS Values 3'>CSS Values 3</a>,
<a href=https://drafts.csswg.org/css-view-transitions-1/ title='* is referenced by CSS View Transitions 1'>CSS View Transitions 1</a>,
<a href=https://drafts.csswg.org/css-view-transitions-2/ title='* is referenced by CSS View Transitions 2'>CSS View Transitions 2</a>,
<a href=https://drafts.csswg.org/selectors-4/ title='* is referenced by Selectors 4'>Selectors 4</a></dd>
<dt id="*_localized@@manifest@dfn"><code class=prefix></code><span><strong>*_localized</strong> (<em>concept for <a href='m.html#manifest@@appmanifest%25%25dfn'>manifest</a> </em>) <a class='self-link' href='#*_localized%40%40manifest%40dfn' aria-label="Permalink for *_localized">§</a></span></dt>
<dd>Defined in <strong title='*_localized is defined in Web Application Manifest'><a href=https://w3c.github.io/manifest/#dfn-_localized>Web Application Manifest</a></strong> </dd>
<dd>Related terms: <em>concept</em> <a href='d.html#dir@@manifest/*_localized@dfn'>dir</a>, <em>concept</em> <a href='l.html#lang@@manifest/*_localized@dfn'>lang</a>, <em>concept</em> <a href='v.html#value@@manifest/*_localized@dfn'>value</a></dd>
<dt id="/ [ <string> | <counter> | <attr()> ]+@@content@value"><code class=prefix></code><span><strong><code class=css>/ [ <string> | <counter> | <attr()> ]+</code></strong> (<em>CSS value for <a href='c.html#content@@@@property'><code>content</code></a> </em>) <a class='self-link' href='#%2F%20%5B%20%3Cstring%3E%20%7C%20%3Ccounter%3E%20%7C%20%3Cattr()%3E%20%5D%2B%40%40content%40value' aria-label="Permalink for / [ <string> | <counter> | <attr()> ]+">§</a></span></dt>
<dd>Defined in <strong title='/ [ <string> | <counter> | <attr()> ]+ is defined in CSS Generated Content 3'><a href=https://drafts.csswg.org/css-content-3/#valdef-content---string--counter--attr>CSS Generated Content 3</a></strong> </dd>
<dt id="&@@@@selector"><code class=prefix></code><span><strong><code class=css>&</code></strong> (<em>CSS selector</em>) <a class='self-link' href='#%26%40%40%40%40selector' aria-label="Permalink for &">§</a></span></dt>
<dd>Defined in <strong title='& is defined in CSS Nesting'><a href=https://drafts.csswg.org/css-nesting-1/#selectordef->CSS Nesting</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-cascade-6/ title='& is referenced by CSS Cascading 6'>CSS Cascading 6</a></dd>
<dt id="&&@@css-values%%grammar"><code class=prefix></code><span><strong><code class=grammar>&&</code></strong> (<em>grammar</em>) <a class='self-link' href='#%26%26%40%40css-values%25%25grammar' aria-label="Permalink for &&">§</a></span></dt>
<dd>Defined in <strong title='&& is defined in CSS Values 3'><a href=https://drafts.csswg.org/css-values-3/#comb-all>CSS Values 3</a></strong> , <strong title='&& is defined in CSS Values 4'><a href=https://drafts.csswg.org/css-values-4/#comb-all>CSS Values 4</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-backgrounds-4/ title='&& is referenced by CSS Backgrounds 4'>CSS Backgrounds 4</a>,
<a href=https://drafts.csswg.org/css-borders-4/ title='&& is referenced by CSS Borders and Box Decorations 4'>CSS Borders and Box Decorations 4</a>,
<a href=https://drafts.csswg.org/css-color-6/ title='&& is referenced by CSS Color 6'>CSS Color 6</a>,
<a href=https://drafts.csswg.org/css-color-hdr-1/ title='&& is referenced by CSS Color HDR 1'>CSS Color HDR 1</a>,
<a href=https://drafts.csswg.org/css-display-4/ title='&& is referenced by CSS Display 4'>CSS Display 4</a>,
<a href=https://drafts.csswg.org/css-align-3/ title='&& is referenced by CSS Box Alignment 3'>CSS Box Alignment 3</a>,
<a href=https://drafts.csswg.org/css-anchor-position-1/ title='&& is referenced by CSS Anchor Positioning'>CSS Anchor Positioning</a>,
<a href=https://drafts.csswg.org/css-backgrounds-3/ title='&& is referenced by CSS Backgrounds 3'>CSS Backgrounds 3</a>,
<a href=https://drafts.csswg.org/css-color-5/ title='&& is referenced by CSS Color 5'>CSS Color 5</a>,
<a href=https://drafts.csswg.org/css-color-adjust-1/ title='&& is referenced by CSS Color Adjustment 1'>CSS Color Adjustment 1</a>,
<a href=https://drafts.csswg.org/css-counter-styles-3/ title='&& is referenced by CSS Counter Styles 3'>CSS Counter Styles 3</a>,
<a href=https://drafts.csswg.org/css-easing-2/ title='&& is referenced by CSS Easing Functions 2'>CSS Easing Functions 2</a>,
<a href=https://drafts.csswg.org/css-fonts-4/ title='&& is referenced by CSS Fonts 4'>CSS Fonts 4</a>,
<a href=https://drafts.csswg.org/css-grid-1/ title='&& is referenced by CSS Grid Layout 1'>CSS Grid Layout 1</a>,
<a href=https://drafts.csswg.org/css-grid-2/ title='&& is referenced by CSS Grid Layout 2'>CSS Grid Layout 2</a>,
<a href=https://drafts.csswg.org/css-inline-3/ title='&& is referenced by CSS Inline Layout 3'>CSS Inline Layout 3</a>,
<a href=https://drafts.csswg.org/css-overflow-3/ title='&& is referenced by CSS Overflow 3'>CSS Overflow 3</a>,
<a href=https://drafts.csswg.org/css-overflow-4/ title='&& is referenced by CSS Overflow 4'>CSS Overflow 4</a>,
<a href=https://drafts.csswg.org/css-speech-1/ title='&& is referenced by CSS Speech 1'>CSS Speech 1</a>,
<a href=https://drafts.csswg.org/css-text-3/ title='&& is referenced by CSS Text 3'>CSS Text 3</a>,
<a href=https://drafts.csswg.org/css-text-4/ title='&& is referenced by CSS Text 4'>CSS Text 4</a>,
<a href=https://drafts.csswg.org/css-text-decor-3/ title='&& is referenced by CSS Text Decoration 3'>CSS Text Decoration 3</a>,
<a href=https://drafts.csswg.org/css-text-decor-4/ title='&& is referenced by CSS Text Decoration 4'>CSS Text Decoration 4</a>,
<a href=https://drafts.csswg.org/css-transforms-1/ title='&& is referenced by CSS Transforms 1'>CSS Transforms 1</a>,
<a href=https://drafts.csswg.org/css-transforms-2/ title='&& is referenced by CSS Transforms 2'>CSS Transforms 2</a>,
<a href=https://drafts.fxtf.org/filter-effects-1/ title='&& is referenced by Filter Effects 1'>Filter Effects 1</a></dd>
<dt id="&&@@CSS%%grammar"><code class=prefix></code><span><strong><code class=grammar>&&</code></strong> (<em>grammar</em>) <a class='self-link' href='#%26%26%40%40CSS%25%25grammar' aria-label="Permalink for &&">§</a></span></dt>
<dd>Defined in <strong title='&& is defined in CSS 2.2'><a href=https://drafts.csswg.org/css2/#comb-all>CSS 2.2</a></strong> </dd>
<dt id="#@@css-values%%grammar"><code class=prefix></code><span><strong><code class=grammar>#</code></strong> (<em>grammar</em>) <a class='self-link' href='#%23%40%40css-values%25%25grammar' aria-label="Permalink for #">§</a></span></dt>