-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.stylelintrc.yml
1102 lines (846 loc) · 28.8 KB
/
.stylelintrc.yml
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
ignoreFiles:
- node_modules/**/*
defaultSeverity: warning
plugins:
- stylelint-scss
- stylelint-order
rules:
# Specify percentage or number notation for alpha-values.
alpha-value-notation: number
# Specify a list of disallowed at-rules.
at-rule-disallowed-list:
- debug
# Require or disallow an empty line before at-rules.
at-rule-empty-line-before:
- always
-
except:
- blockless-after-blockless
- first-nested
ignore:
- after-comment
ignoreAtRules:
- else
# Specify lowercase or uppercase for at-rules names.
at-rule-name-case: lower
# Require a newline after at-rule names.
at-rule-name-newline-after: always-multi-line
# Require a single space after at-rule names.
at-rule-name-space-after: always
# Disallow unknown at-rules.
at-rule-no-unknown:
- true
-
ignoreAtRules:
- at-root
- each
- else
- debug
- error
- extend
- for
- forward
- function
- if
- include
- mixin
- return
- use
- warn
- while
# Disallow vendor prefixes for at-rules.
at-rule-no-vendor-prefix: true
# Require a newline after the semicolon of at-rules.
at-rule-semicolon-newline-after: always
# Require a single space or disallow whitespace before the semicolons of at rules.
at-rule-semicolon-space-before: never
# Specify a whitelist of allowed at-rules.
#at-rule-whitelist:
# Require or disallow an empty line before the closing brace of blocks.
block-closing-brace-empty-line-before: never
# Require a newline or disallow whitespace after the closing brace of blocks.
#block-closing-brace-newline-after:
# Require a newline or disallow whitespace before the closing brace of blocks.
block-closing-brace-newline-before: always-multi-line
# Require a single space or disallow whitespace after the closing brace of blocks.
#block-closing-brace-space-after:
# Require a single space or disallow whitespace before the closing brace of blocks.
block-closing-brace-space-before: always-single-line
# Disallow empty blocks.
block-no-empty: true
# equire a newline after the opening brace of blocks.
block-opening-brace-newline-after: always-multi-line
#Require a newline or disallow whitespace before the opening brace of blocks.
#block-opening-brace-newline-before:
# Require a single space or disallow whitespace after the opening brace of blocks.
block-opening-brace-space-after: always-single-line
# Require a single space or disallow whitespace before the opening brace of blocks.
block-opening-brace-space-before: always
# Specify modern or legacy notation for applicable color-functions.
color-function-notation: legacy
# Specify lowercase or uppercase for hexadecimal color values.
color-hex-case: lower
# Specify short or long notation for hexadecimal color values.
color-hex-length: long
# Require (where possible) or disallow named colors.
color-named: never
# Disallow hex colors.
#color-no-hex: true
# Disallow invalid hexadecimal colors.
color-no-invalid-hex: true
# Require or disallow an empty line before comments.
#comment-empty-line-before:
# Disallow empty comments.
comment-no-empty: true
# Specify a pattern for comments.
#comment-pattern:
# Require or disallow whitespace on the inside of comment markers.
comment-whitespace-inside: always
# Specify a blacklist of disallowed words within comments.
#comment-word-blacklist:
# Specify a pattern for custom media query names.
#custom-media-pattern:
# Require or disallow an empty line before custom properties (Autofixable).
custom-property-empty-line-before: always
# Specify a pattern for custom properties.
#custom-property-pattern:
# Require a single space or disallow whitespace after the bang of declarations.
declaration-bang-space-after: never
# Require a single space or disallow whitespace before the bang of declarations.
declaration-bang-space-before: always
# Disallow duplicate custom properties within declaration blocks.
declaration-block-no-duplicate-custom-properties: true
# Disallow duplicate properties within declaration blocks.
#declaration-block-no-duplicate-properties:
# Disallow longhand properties that can be combined into one shorthand property.
declaration-block-no-redundant-longhand-properties: true
# Disallow shorthand properties that override related longhand properties.
declaration-block-no-shorthand-property-overrides: true
# Require a newline or disallow whitespace after the semicolons of declaration blocks.
declaration-block-semicolon-newline-after: always-multi-line
# Require a newline or disallow whitespace before the semicolons of declaration blocks.
declaration-block-semicolon-newline-before: never-multi-line
# Require a single space or disallow whitespace after the semicolons of declaration blocks.
declaration-block-semicolon-space-after: always-single-line
# Require a single space or disallow whitespace before the semicolons of declaration blocks.
declaration-block-semicolon-space-before: never
# Limit the number of declaration within single line declaration blocks.
declaration-block-single-line-max-declarations: 1
# Require or disallow a trailing semicolon within declaration blocks.
declaration-block-trailing-semicolon: always
# Require a newline or disallow whitespace after the colon of declarations.
declaration-colon-newline-after: always-multi-line
# Require a single space or disallow whitespace after the colon of declarations.
declaration-colon-space-after: always-single-line
# Require a single space or disallow whitespace before the colon of declarations.
declaration-colon-space-before: never
# Require or disallow an empty line before declarations.
#declaration-empty-line-before:
# Disallow `!important` within declarations.
#declaration-no-important:
# Specify a blacklist of disallowed property and unit pairs within declarations.
#declaration-property-unit-blacklist:
# Specify a whitelist of allowed property and unit pairs within declarations.
#declaration-property-unit-whitelist:
# Specify a blacklist of disallowed property and value pairs within declarations.
#declaration-property-value-blacklist:
# Specify a whitelist of allowed property and value pairs within declarations.
#declaration-property-value-whitelist:
# Disallow non-numeric values when interpolating a value with a unit.
#dimension-no-non-numeric-values
# Specify whether or not quotation marks should be used around font family names.
font-family-name-quotes: always-where-recommended
# Disallow duplicate font family names.
font-family-no-duplicate-names: true
# Disallow missing generic families in lists of font family names.
font-family-no-missing-generic-family-keyword: true
# Require numeric or named (where possible) `font-weight` values.
font-weight-notation: named-where-possible
# Specify a blacklist of disallowed functions.
#function-blacklist:
# Disallow an invalid expression within `calc` functions.
function-calc-no-invalid: true
# Disallow an unspaced operator within `calc` functions.
function-calc-no-unspaced-operator: true
# Require a newline or disallow whitespace after the commas of functions.
function-comma-newline-after: always-multi-line
# Require a newline or disallow whitespace before the commas of functions.
function-comma-newline-before: never-multi-line
# Require a single space or disallow whitespace after the commas of functions.
function-comma-space-after: always-single-line
# Require a single space or disallow whitespace before the commas of functions.
function-comma-space-before: never
# Disallow direction values in `linear-gradient()` calls that are not valid.
function-linear-gradient-no-nonstandard-direction: true
# Limit the number of adjacent empty lines within functions.
function-max-empty-lines: 0
# Specify lowercase or uppercase for function names.
function-name-case: lower
# Require a newline or disallow whitespace on the inside of the parentheses of functions.
function-parentheses-newline-inside: always-multi-line
# Require a single space or disallow whitespace on the inside of the parentheses of functions.
function-parentheses-space-inside: never-single-line
# Disallow scheme-relative URLs.
function-url-no-scheme-relative: true
# Require or disallow quotes for URLs.
function-url-quotes: always
# Specify a blacklist of disallowed URL schemes.
#function-url-scheme-blacklist:
# Specify a whitelist of allowed URL schemes.
#function-url-scheme-whitelist:
# Specify a whitelist of allowed functions.
#function-whitelist:
# Require or disallow whitespace after functions.
function-whitespace-after: always
# Specify number or angle notation for degree hues.
hue-degree-notation: number
# Specify indentation.
indentation: 4
# Disallow `!important` within keyframe declarations.
keyframe-declaration-no-important: true
# Specify a pattern for keyframe names.
#keyframes-name-pattern:
# Disallow units for zero lengths.
length-zero-no-unit: true
# Specify Unix or Windows linebreaks.
linebreaks: unix
# Limit the number of adjacent empty lines.
max-empty-lines: 3
# Limit the length of a line.
#max-line-length:
# Limit the depth of nesting.
max-nesting-depth: 4
# Require a single space or disallow whitespace after the colon in media features.
media-feature-colon-space-after: always
# Require a single space or disallow whitespace before the colon in media features.
media-feature-colon-space-before: never
# Specify a blacklist of disallowed media feature names.
#media-feature-name-blacklist:
# Specify lowercase or uppercase for media feature names.
media-feature-name-case: lower
# Disallow unknown media feature names.
media-feature-name-no-unknown: true
# Disallow vendor prefixes for media feature names.
media-feature-name-no-vendor-prefix: true
# Specify a whitelist of allowed media feature name and value pairs.
#media-feature-name-value-whitelist:
# Specify a whitelist of allowed media feature names.
#media-feature-name-whitelist:
# Require a single space or disallow whitespace on the inside of the parentheses within media features.
media-feature-parentheses-space-inside: never
# Require a single space or disallow whitespace after the range operator in media features.
media-feature-range-operator-space-after: always
# Require a single space or disallow whitespace before the range operator in media features.
media-feature-range-operator-space-before: always
# Require a newline or disallow whitespace after the commas of media query lists.
media-query-list-comma-newline-after: never-multi-line
# Require a newline or disallow whitespace before the commas of media query lists.
media-query-list-comma-newline-before: never-multi-line
# Require a single space or disallow whitespace after the commas of media query lists.
media-query-list-comma-space-after: always
# Require a single space or disallow whitespace before the commas of media query lists.
media-query-list-comma-space-before: never
# Disallow invalid named grid areas.
named-grid-areas-no-invalid: true
# Disallow selectors of lower specificity from coming after overriding selectors of higher specificity.
#no-descending-specificity: true
# Disallow duplicate `@import` rules within a stylesheet.
no-duplicate-at-import-rules: true
# Disallow duplicate selectors within a stylesheet.
#no-duplicate-selectors: true
# Disallow empty first lines.
no-empty-first-line: true
# Disallow empty sources.
no-empty-source: true
# Disallow end-of-line whitespace.
no-eol-whitespace: true
# Disallow extra semicolons.
no-extra-semicolons: true
# Disallow double-slash comments (`//`) which are not supported by CSS.
no-invalid-double-slash-comments: true
# Disallow missing end-of-source newlines.
no-missing-end-of-source-newline: true
# Disallow unknown animations.
#no-unknown-animations:
# Require or disallow a leading zero for fractional numbers less than 1.
number-leading-zero: always
# Limit the number of decimal places allowed in numbers.
#number-max-precision:
# Disallow trailing zeros in numbers.
number-no-trailing-zeros: true
# Specify a blacklist of disallowed properties.
#property-blacklist:
# Specify lowercase or uppercase for properties.
property-case: lower
# Disallow unknown properties.
property-no-unknown:
- true
-
ignoreProperties:
- contains-intrinsic-size
# Disallow vendor prefixes for properties.
property-no-vendor-prefix:
- true
-
ignoreProperties:
- appearance
# Specify a whitelist of allowed properties.
#property-whitelist:
# Require or disallow an empty line before rules.
rule-empty-line-before:
- always-multi-line
-
except:
- first-nested
# Require a single space or disallow whitespace on the inside of the brackets within attribute selectors.
selector-attribute-brackets-space-inside: never
# Specify a list of disallowed attribute names.
#selector-attribute-name-disallowed-list:
# Specify a blacklist of disallowed attribute operators.
#selector-attribute-operator-blacklist:
# Require a single space or disallow whitespace after operators within attribute selectors.
selector-attribute-operator-space-after: never
# Require a single space or disallow whitespace before operators within attribute selectors.
selector-attribute-operator-space-before: never
#Specify a whitelist of allowed attribute operators.
#selector-attribute-operator-whitelist:
# Require or disallow quotes for attribute values.
selector-attribute-quotes: always
# Specify a pattern for class selectors.
#selector-class-pattern:
# Specify a blacklist of disallowed combinators.
#selector-combinator-blacklist:
# Require a single space or disallow whitespace after the combinators of selectors.
#selector-combinator-space-after:
# Require a single space or disallow whitespace before the combinators of selectors.
selector-combinator-space-before: always
# Specify a whitelist of allowed combinators.
#selector-combinator-whitelist:
# Disallow non-space characters for descendant combinators of selectors.
selector-descendant-combinator-no-non-space: true
# Specify a pattern for ID selectors.
#selector-id-pattern:
# Require a newline or disallow whitespace after the commas of selector lists.
selector-list-comma-newline-after: always
# Require a newline or disallow whitespace before the commas of selector lists.
selector-list-comma-newline-before: never-multi-line
# Require a single space or disallow whitespace after the commas of selector lists.
selector-list-comma-space-after: always-single-line
# Require a single space or disallow whitespace before the commas of selector lists.
selector-list-comma-space-before: never
# Limit the number of attribute selectors in a selector.
selector-max-attribute: 2
# Limit the number of classes in a selector.
selector-max-class: 4
# Limit the number of combinators in a selector.
selector-max-combinators: 3
# Limit the number of compound selectors in a selector.
selector-max-compound-selectors: 4
# Limit the number of adjacent empty lines within selectors.
selector-max-empty-lines: 0
# Limit the number of id selectors in a selector.
selector-max-id: 1
# Limit the number of pseudo-classes in a selector.
selector-max-pseudo-class: 3
# Limit the specificity of selectors.
selector-max-specificity: 1,2,1
# Limit the number of type in a selector.
selector-max-type: 3
# Limit the number of universal selectors in a selector.
selector-max-universal: 1
# Specify a pattern for the selectors of rules nested within rules.
#selector-nested-pattern:
# Disallow qualifying a selector by type.
#selector-no-qualifying-type: true
# Disallow vendor prefixes for selectors.
selector-no-vendor-prefix: true
# Specify a blacklist of disallowed pseudo-class selectors.
#selector-pseudo-class-blacklist:
# Specify lowercase or uppercase for pseudo-class selectors.
selector-pseudo-class-case: lower
# Disallow unknown pseudo-class selectors.
selector-pseudo-class-no-unknown: true
# Require a single space or disallow whitespace on the inside of the parentheses within pseudo-class selectors.
selector-pseudo-class-parentheses-space-inside: never
# Specify a whitelist of allowed pseudo-class selectors.
#selector-pseudo-class-whitelist:
# Specify a blacklist of disallowed pseudo-element selectors.
#selector-pseudo-element-blacklist:
# Specify lowercase or uppercase for pseudo-element selectors.
selector-pseudo-element-case: lower
# Specify single or double colon notation for applicable pseudo-elements.
selector-pseudo-element-colon-notation: double
# Disallow unknown pseudo-element selectors.
selector-pseudo-element-no-unknown: true
# Specify a whitelist of allowed pseudo-element selectors.
#selector-pseudo-element-whitelist:
# Specify lowercase or uppercase for type selector.
selector-type-case: lower
# Disallow unknown type selectors.
selector-type-no-unknown: true
# Disallow redundant values in shorthand properties.
shorthand-property-no-redundant-values: true
# Disallow (unescaped) newlines in strings.
string-no-newline: true
# Specify single or double quotes around strings.
string-quotes: double
# Specify the minimum number of milliseconds for time values.
time-min-milliseconds: 100
# Require or disallow the Unicode Byte Order Mark.
unicode-bom: never
# Specify a blacklist of disallowed units.
#unit-blacklist:
# Specify lowercase or uppercase for units.
unit-case: lower
# Disallow unknown units.
unit-no-unknown: true
# Specify a whitelist of allowed units.
#unit-whitelist:
# Specify lowercase or uppercase for keywords values.
#value-keyword-case: lower
# Require a newline or disallow whitespace after the commas of value lists.
value-list-comma-newline-after: never-multi-line
# Require a newline or disallow whitespace before the commas of value lists.
value-list-comma-newline-before: never-multi-line
# Require a single space or disallow whitespace after the commas of value lists.
value-list-comma-space-after: always
# Require a single space or disallow whitespace before the commas of value lists.
value-list-comma-space-before: never
# Limit the number of adjacent empty lines within value lists.
value-list-max-empty-lines: 0
# Disallow vendor prefixes for values.
value-no-vendor-prefix: true
# SMACSS-like property order rules (stylelint-order plugin).
order/properties-order:
# Heading.
- content
# Box.
- display
- visibility
- backface-visibility
- position
- z-index
- top
- right
- bottom
- left
- box-sizing
- grid
- gap
- grid-area
- grid-template
- grid-template-areas
- grid-template-columns
- grid-template-rows
- grid-auto-columns
- grid-auto-rows
- grid-auto-flow
- grid-column
- grid-column-start
- grid-column-end
- column-gap
- grid-row
- grid-row-start
- grid-row-end
- row-gap
- flex
- flex-basis
- flex-direction
- flex-flow
- flex-grow
- flex-shrink
- flex-wrap
- align-content
- align-items
- align-self
- justify-content
- justify-items
- justify-self
- place-content
- place-items
- place-self
- order
- width
- min-width
- max-width
- height
- min-height
- max-height
- writing-mode
- block-size
- min-block-size
- inline-size
- min-inline-size
- inset
- inset-block
- inset-block-start
- inset-block-end
- inset-inline
- inset-inline-start
- inset-inline-end
- object-fit
- object-position
- margin
- margin-collapse
- margin-top
- margin-top-collapse
- margin-right
- margin-right-collapse
- margin-bottom
- margin-bottom-collapse
- margin-left
- margin-left-collapse
- margin-block
- margin-block-start
- margin-block-end
- margin-inline
- margin-inline-start
- margin-inline-end
- padding
- padding-top
- padding-right
- padding-bottom
- padding-left
- padding-block
- padding-block-start
- padding-block-end
- padding-inline
- padding-inline-start
- padding-inline-end
- float
- clear
- overflow
- overflow-wrap
- overflow-x
- overflow-y
- clip
- clip-path
- zoom
- min-zoom
- max-zoom
- columns
- column-count
- column-gap
- column-fill
- column-rule
- column-rule-width
- column-rule-style
- column-rule-color
- column-span
- column-width
- table-layout
- empty-cells
- caption-side
# Manipulations.
- will-change
- transform
- transform-box
- transform-origin
- transform-style
- perspective
- perspective-origin
- translate
- rotate
- scale
- transition
- transition-property
- transition-duration
- transition-timing-function
- transition-delay
- perspective
- perspective-origin
- image-orientation
- image-rendering
- animation
- animation-name
- animation-duration
- animation-timing-function
- animation-delay
- animation-iteration-count
- animation-direction
- animation-fill-mode
- animation-play-state
# Border.
- border
- border-width
- border-style
- border-color
- border-spacing
- border-collapse
- border-top
- border-top-width
- border-top-style
- border-top-color
- border-right
- border-right-width
- border-right-style
- border-right-color
- border-bottom
- border-bottom-width
- border-bottom-style
- border-bottom-color
- border-left
- border-left-width
- border-left-style
- border-left-color
- border-radius
- border-top-left-radius
- border-top-right-radius
- border-bottom-right-radius
- border-bottom-left-radius
- border-block
- border-block-width
- border-block-style
- border-block-color
- border-block-start
- border-block-start-color
- border-block-start-style
- border-block-start-width
- border-block-end
- border-block-end-color
- border-block-end-style
- border-block-end-width
- border-inline
- border-inline-width
- border-inline-style
- border-inline-color
- border-inline-start
- border-inline-start-width
- border-inline-start-style
- border-inline-start-color
- border-inline-end
- border-inline-end-width
- border-inline-end-style
- border-inline-end-color
- border-start-start-radius
- border-start-end-radius
- border-end-start-radius
- border-end-end-radius
- border-image
- border-image-source
- border-image-width
- border-image-outset
- border-image-repeat
- border-image-slice
- outline
- outline-width
- outline-style
- outline-color
- outline-offset
- stroke
- stroke-width
- stroke-linecap
- stroke-dasharray
- stroke-dashoffset
# Background.
- opacity
- background
- background-attachment
- background-blend-mode
- background-clip
- background-color
- background-image
- background-origin
- background-position
- background-repeat
- background-size
- box-shadow
- mix-blend-mode
- isolation
- filter
- mask
- mask-clip
- mask-composite
- mask-image
- mask-mode
- mask-origin
- mask-position
- mask-repeat
- mask-size
- mask-type
- shape-image-threshold
- shape-margin
- shape-outside
- fill
# Text.
- color
- direction
- list-style
- list-style-position
- list-style-type
- list-style-image
- font
- font-effect
- font-emphasize
- font-emphasize-position
- font-emphasize-style
- font-family
- font-feature-settings
- font-kerning
- font-language-override
- font-optical-sizing
- font-size
- font-size-adjust
- font-smoothing
- font-stretch
- font-style
- font-synthesis
- font-variant
- font-variant-alternates
- font-variant-caps
- font-variant-east-asian
- font-variant-ligatures
- font-variant-numeric
- font-variant-position
- font-variation-settings
- font-weight
- letter-spacing
- line-break
- line-clamp
- line-height
- vertical-align
- hanging-punctuation
- hyphens
- orphans
- widows
- quotes
- speak
- speak-as
- src
- text-align
- text-align-last
- text-combine-upright
- text-decoration
- text-decoration-color
- text-decoration-line
- text-decoration-skip
- text-decoration-skip-ink
- text-decoration-style
- text-emphasis
- text-emphasis-color
- text-emphasis-style
- text-emphasis-position
- text-indent
- text-justify
- text-orientation
- text-outline
- text-overflow
- text-overflow-ellipsis
- text-overflow-mode
- text-rendering
- text-shadow
- text-size-adjust
- text-transform
- text-underline-position
- text-wrap
- unicode-bidi
- unicode-range
- word-wrap
- word-break
- word-spacing
- white-space
- tab-size
# Other.
- all
- appearance
- additive-symbols
- color-adjust
- counter-reset
- counter-increment
- range
- system
- negative
- symbols
- prefix
- suffix
- pad
- fallback
- box-decoration-break
- page-break-before
- break-before
- page-break-inside
- break-inside
- page-break-after
- break-after
- cursor
- caret-color