forked from googleprojectzero/domato
-
Notifications
You must be signed in to change notification settings - Fork 1
/
css.txt
1593 lines (1574 loc) · 80.6 KB
/
css.txt
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
# Copyright 2017 Google Inc. All Rights Reserved.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
!include common.txt
<cssurl> = <hash><elementid>
<cssurl> = <hash><svgelementid>
<cssurl> = data:image/gif;base64,R0lGODlhEAAQAMQAAORHHOVSKudfOulrSOp3WOyDZu6QdvCchPGolfO0o/XBs/fNwfjZ0frl3/zy7////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAkAABAALAAAAAAQABAAAAVVICSOZGlCQAosJ6mu7fiyZeKqNKToQGDsM8hBADgUXoGAiqhSvp5QAnQKGIgUhwFUYLCVDFCrKUE1lBavAViFIDlTImbKC5Gm2hB0SlBCBMQiB0UjIQA7
<element p=0.5> = <tagname>
<element p=0.4> = <svgtagname>
<element> = <element>:first-child
<element> = <element>::first-letter
<element> = <element>::first-line
<element> = <element>::before
<element> = <element>::after
#todo better selectors
<selector> = <selector>, <selector>
<selector> = <element>
<selector> = .<class>
<selector> = <hash><elementid>
<selector> = <selector2>
<selector2> = *
<selector2> = ::selection
<selector2> = <element> <element>
<selector2> = <element><gt><element>
<selector2> = <element>+<element>
<selector2> = <element>~<element>
<selector2> = <element>::after
<selector2> = <element>::before
<selector2> = <element>:first-child
<selector2> = <element>::first-letter
<selector2> = <element>::first-line
<selector2> = <element>:first-of-type
<selector2> = <element>:last-child
<selector2> = <element>:last-of-type
<selector2> = :not(<element>)
<selector2> = <element>:nth-child(<fuzzint>)
<selector2> = <element>:nth-last-child(2)
<selector2> = <element>:nth-last-of-type(2)
<selector2> = <element>:nth-of-type(2)
<selector2> = <element>:only-of-type
<selector2> = <element>:only-child
<selector2> = a:link
<selector2> = a:active
<selector2> = a:hover
<selector2> = a:visited
<selector2> = input:checked
<selector2> = input:disabled
<selector2> = input:enabled
<selector2> = input:focus
<selector2> = input:in-range
<selector2> = input:invalid
<selector2> = input:optional
<selector2> = input:out-of-range
<selector2> = input:read-only
<selector2> = input:read-write
<selector2> = input:required
<selector2> = input:valid
<selector2> = :root
<selector2> = <element>:empty
#todo all rules
<rule> = <selector> { <declaration> }
<rules root=true> = <rule10><rule10><rule10><rule10><rule10>
<rule10> = <rulenl><rulenl><rulenl><rulenl><rulenl><rulenl><rulenl><rulenl><rulenl><rulenl>
<rulenl> = <rule><newline>
<declaration> = <cssproperty>; <cssproperty>; <cssproperty>; <cssproperty>; <cssproperty>; <cssproperty>; <cssproperty>; <cssproperty>; <cssproperty>; <cssproperty>; <cssproperty>; <cssproperty>; <cssproperty>; <cssproperty>; <cssproperty>; <cssproperty>; <cssproperty>; <cssproperty>; <cssproperty>; <cssproperty>
<declaration5> = <cssproperty>; <cssproperty>; <cssproperty>; <cssproperty>; <cssproperty>
<cssvar> = --cssvara
<cssvar> = --cssvarb
<cssvar> = --cssvarc
<cssvar> = --cssvard
<cssproperty> = <cssvar>: <cssproperty_value>
<cssproperty> = <cssproperty_name>: var(<cssvar>)
# Automatically extracted
<cssproperty_name> = -ms-flex-align
<cssproperty_name> = -ms-font-feature-settings
<cssproperty_name> = -ms-text-combine-horizontal
<cssproperty_name> = -ms-user-select
<cssproperty_name> = -webkit-align-content
<cssproperty_name> = -webkit-align-items
<cssproperty_name> = -webkit-align-self
<cssproperty_name> = -webkit-animation
<cssproperty_name> = -webkit-animation-delay
<cssproperty_name> = -webkit-animation-direction
<cssproperty_name> = -webkit-animation-duration
<cssproperty_name> = -webkit-animation-fill-mode
<cssproperty_name> = -webkit-animation-iteration-count
<cssproperty_name> = -webkit-animation-name
<cssproperty_name> = -webkit-animation-play-state
<cssproperty_name> = -webkit-animation-timing-function
<cssproperty_name> = -webkit-app-region
<cssproperty_name> = -webkit-appearance
<cssproperty_name> = -webkit-backface-visibility
<cssproperty_name> = -webkit-background-clip
<cssproperty_name> = -webkit-background-origin
<cssproperty_name> = -webkit-background-size
<cssproperty_name> = -webkit-border-after
<cssproperty_name> = -webkit-border-after-color
<cssproperty_name> = -webkit-border-after-width
<cssproperty_name> = -webkit-border-before
<cssproperty_name> = -webkit-border-before-color
<cssproperty_name> = -webkit-border-before-style
<cssproperty_name> = -webkit-border-before-width
<cssproperty_name> = -webkit-border-bottom-left-radius
<cssproperty_name> = -webkit-border-bottom-right-radius
<cssproperty_name> = -webkit-border-end
<cssproperty_name> = -webkit-border-end-color
<cssproperty_name> = -webkit-border-end-width
<cssproperty_name> = -webkit-border-image
<cssproperty_name> = -webkit-border-radius
<cssproperty_name> = -webkit-border-start
<cssproperty_name> = -webkit-border-start-color
<cssproperty_name> = -webkit-border-start-width
<cssproperty_name> = -webkit-border-top-left-radius
<cssproperty_name> = -webkit-border-top-right-radius
<cssproperty_name> = -webkit-border-vertical-spacing
<cssproperty_name> = -webkit-box-align
<cssproperty_name> = -webkit-box-decoration-break
<cssproperty_name> = -webkit-box-direction
<cssproperty_name> = -webkit-box-flex
<cssproperty_name> = -webkit-box-flex-group
<cssproperty_name> = -webkit-box-lines
<cssproperty_name> = -webkit-box-ordinal-group
<cssproperty_name> = -webkit-box-orient
<cssproperty_name> = -webkit-box-pack
<cssproperty_name> = -webkit-box-reflect
<cssproperty_name> = -webkit-box-shadow
<cssproperty_name> = -webkit-box-sizing
<cssproperty_name> = -webkit-clip-path
<cssproperty_name> = -webkit-color-correction
<cssproperty_name> = -webkit-column-break-after
<cssproperty_name> = -webkit-column-break-before
<cssproperty_name> = -webkit-column-break-inside
<cssproperty_name> = -webkit-column-count
<cssproperty_name> = -webkit-column-fill
<cssproperty_name> = -webkit-column-gap
<cssproperty_name> = -webkit-column-rule
<cssproperty_name> = -webkit-column-rule-color
<cssproperty_name> = -webkit-column-rule-style
<cssproperty_name> = -webkit-column-rule-width
<cssproperty_name> = -webkit-column-span
<cssproperty_name> = -webkit-column-width
<cssproperty_name> = -webkit-columns
<cssproperty_name> = -webkit-direction
<cssproperty_name> = -webkit-filter
<cssproperty_name> = -webkit-flex
<cssproperty_name> = -webkit-flex-direction
<cssproperty_name> = -webkit-flex-wrap
<cssproperty_name> = -webkit-flow-from
<cssproperty_name> = -webkit-flow-into
<cssproperty_name> = -webkit-font-feature-settings
<cssproperty_name> = -webkit-font-smoothing
<cssproperty_name> = -webkit-highlight
<cssproperty_name> = -webkit-hyphenate-character
<cssproperty_name> = -webkit-hyphens
<cssproperty_name> = -webkit-justify-content
<cssproperty_name> = -webkit-line-break
<cssproperty_name> = -webkit-line-clamp
<cssproperty_name> = -webkit-locale
<cssproperty_name> = -webkit-logical-height
<cssproperty_name> = -webkit-logical-width
<cssproperty_name> = -webkit-margin-after
<cssproperty_name> = -webkit-margin-after-collapse
<cssproperty_name> = -webkit-margin-before
<cssproperty_name> = -webkit-margin-before-collapse
<cssproperty_name> = -webkit-margin-bottom-collapse
<cssproperty_name> = -webkit-margin-collapse
<cssproperty_name> = -webkit-margin-end
<cssproperty_name> = -webkit-margin-start
<cssproperty_name> = -webkit-margin-top-collapse
<cssproperty_name> = -webkit-marquee-speed
<cssproperty_name> = -webkit-mask
<cssproperty_name> = -webkit-mask-box-image
<cssproperty_name> = -webkit-mask-box-image-outset
<cssproperty_name> = -webkit-mask-box-image-repeat
<cssproperty_name> = -webkit-mask-box-image-slice
<cssproperty_name> = -webkit-mask-box-image-source
<cssproperty_name> = -webkit-mask-box-image-width
<cssproperty_name> = -webkit-mask-clip
<cssproperty_name> = -webkit-mask-composite
<cssproperty_name> = -webkit-mask-image
<cssproperty_name> = -webkit-mask-origin
<cssproperty_name> = -webkit-mask-position
<cssproperty_name> = -webkit-mask-repeat
<cssproperty_name> = -webkit-mask-repeat-y
<cssproperty_name> = -webkit-mask-size
<cssproperty_name> = -webkit-min-logical-height
<cssproperty_name> = -webkit-nbsp-mode
<cssproperty_name> = -webkit-opacity
<cssproperty_name> = -webkit-overflow-scrolling
<cssproperty_name> = -webkit-padding-after
<cssproperty_name> = -webkit-padding-before
<cssproperty_name> = -webkit-padding-end
<cssproperty_name> = -webkit-padding-start
<cssproperty_name> = -webkit-perspective
<cssproperty_name> = -webkit-perspective-origin
<cssproperty_name> = -webkit-perspective-origin-x
<cssproperty_name> = -webkit-perspective-origin-y
<cssproperty_name> = -webkit-print-color-adjust
<cssproperty_name> = -webkit-rtl-ordering
<cssproperty_name> = -webkit-ruby-position
<cssproperty_name> = -webkit-shape-margin
<cssproperty_name> = -webkit-shape-outside
<cssproperty_name> = -webkit-tap-highlight-color
<cssproperty_name> = -webkit-text-combine
<cssproperty_name> = -webkit-text-decorations-in-effect
<cssproperty_name> = -webkit-text-emphasis
<cssproperty_name> = -webkit-text-emphasis-color
<cssproperty_name> = -webkit-text-emphasis-position
<cssproperty_name> = -webkit-text-emphasis-style
<cssproperty_name> = -webkit-text-fill-color
<cssproperty_name> = -webkit-text-orientation
<cssproperty_name> = -webkit-text-security
<cssproperty_name> = -webkit-text-stroke
<cssproperty_name> = -webkit-text-stroke-color
<cssproperty_name> = -webkit-text-stroke-width
<cssproperty_name> = -webkit-transform
<cssproperty_name> = -webkit-transform-origin
<cssproperty_name> = -webkit-transform-style
<cssproperty_name> = -webkit-transition
<cssproperty_name> = -webkit-transition-delay
<cssproperty_name> = -webkit-transition-duration
<cssproperty_name> = -webkit-transition-property
<cssproperty_name> = -webkit-transition-timing-function
<cssproperty_name> = -webkit-user-drag
<cssproperty_name> = -webkit-user-modify
<cssproperty_name> = -webkit-user-select
<cssproperty_name> = -webkit-wrap-flow
<cssproperty_name> = -webkit-writing-mode
<cssproperty_name> = align-content
<cssproperty_name> = align-items
<cssproperty_name> = align-self
<cssproperty_name> = alignx
<cssproperty_name> = animation
<cssproperty_name> = animation-delay
<cssproperty_name> = animation-direction
<cssproperty_name> = animation-duration
<cssproperty_name> = animation-fill-mode
<cssproperty_name> = animation-iteration-count
<cssproperty_name> = animation-name
<cssproperty_name> = animation-play-state
<cssproperty_name> = animation-timing-function
<cssproperty_name> = backdrop-filter
<cssproperty_name> = backface-visibility
<cssproperty_name> = background
<cssproperty_name> = background-attachment
<cssproperty_name> = background-blend-mode
<cssproperty_name> = background-clip
<cssproperty_name> = background-color
<cssproperty_name> = background-image
<cssproperty_name> = background-origin
<cssproperty_name> = background-position
<cssproperty_name> = background-position-x
<cssproperty_name> = background-repeat
<cssproperty_name> = background-repeat-x
<cssproperty_name> = background-repeat-y
<cssproperty_name> = background-size
<cssproperty_name> = baseline-shift
<cssproperty_name> = border
<cssproperty_name> = border-bottom
<cssproperty_name> = border-bottom-color
<cssproperty_name> = border-bottom-left-radius
<cssproperty_name> = border-bottom-right-radius
<cssproperty_name> = border-bottom-style
<cssproperty_name> = border-bottom-width
<cssproperty_name> = border-collapse
<cssproperty_name> = border-color
<cssproperty_name> = border-image
<cssproperty_name> = border-image-outset
<cssproperty_name> = border-image-repeat
<cssproperty_name> = border-image-slice
<cssproperty_name> = border-image-source
<cssproperty_name> = border-image-width
<cssproperty_name> = border-left
<cssproperty_name> = border-left-color
<cssproperty_name> = border-left-style
<cssproperty_name> = border-left-width
<cssproperty_name> = border-radius
<cssproperty_name> = border-right
<cssproperty_name> = border-right-color
<cssproperty_name> = border-right-style
<cssproperty_name> = border-right-width
<cssproperty_name> = border-size
<cssproperty_name> = border-spacing
<cssproperty_name> = border-style
<cssproperty_name> = border-top
<cssproperty_name> = border-top-color
<cssproperty_name> = border-top-left-radius
<cssproperty_name> = border-top-right-radius
<cssproperty_name> = border-top-style
<cssproperty_name> = border-top-width
<cssproperty_name> = border-width
<cssproperty_name> = bottom
<cssproperty_name> = box-align
<cssproperty_name> = box-decoration-break
<cssproperty_name> = box-direction
<cssproperty_name> = box-flex
<cssproperty_name> = box-flex-group
<cssproperty_name> = box-ordinal-group
<cssproperty_name> = box-orient
<cssproperty_name> = box-pack
<cssproperty_name> = box-reflect
<cssproperty_name> = box-shadow
<cssproperty_name> = box-sizing
<cssproperty_name> = break-after
<cssproperty_name> = break-before
<cssproperty_name> = break-inside
<cssproperty_name> = caption-side
<cssproperty_name> = cellpadding
<cssproperty_name> = cellspacing
<cssproperty_name> = clear
<cssproperty_name> = clip
<cssproperty_name> = clip-path
<cssproperty_name> = color
<cssproperty_name> = color-interpolation-filters
<cssproperty_name> = color-profile
<cssproperty_name> = column-break-after
<cssproperty_name> = column-break-before
<cssproperty_name> = column-count
<cssproperty_name> = column-fill
<cssproperty_name> = column-gap
<cssproperty_name> = column-rule
<cssproperty_name> = column-rule-style
<cssproperty_name> = column-span
<cssproperty_name> = column-width
<cssproperty_name> = columns
<cssproperty_name> = contain
<cssproperty_name> = content
<cssproperty_name> = counter-increment
<cssproperty_name> = counter-reset
<cssproperty_name> = css-float
<cssproperty_name> = cursor
<cssproperty_name> = cx
<cssproperty_name> = cy
<cssproperty_name> = direction
<cssproperty_name> = display
<cssproperty_name> = dominant-baseline
<cssproperty_name> = empty-cells
<cssproperty_name> = fill
<cssproperty_name> = fill-opacity
<cssproperty_name> = fill-rule
<cssproperty_name> = filter
<cssproperty_name> = flex
<cssproperty_name> = flex-basis
<cssproperty_name> = flex-direction
<cssproperty_name> = flex-flow
<cssproperty_name> = flex-grow
<cssproperty_name> = flex-shrink
<cssproperty_name> = flex-wrap
<cssproperty_name> = float
<cssproperty_name> = flood-color
<cssproperty_name> = flood-opacity
<cssproperty_name> = font
<cssproperty_name> = font-face
<cssproperty_name> = font-family
<cssproperty_name> = font-feature-settings
<cssproperty_name> = font-kerning
<cssproperty_name> = font-size
<cssproperty_name> = font-size-adjust
<cssproperty_name> = font-stretch
<cssproperty_name> = font-style
<cssproperty_name> = font-variant
<cssproperty_name> = font-variant-caps
<cssproperty_name> = font-variant-ligatures
<cssproperty_name> = font-vendor
<cssproperty_name> = font-weight
<cssproperty_name> = fonty-family
<cssproperty_name> = grid
<cssproperty_name> = grid-area
<cssproperty_name> = grid-auto-columns
<cssproperty_name> = grid-auto-flow
<cssproperty_name> = grid-auto-rows
<cssproperty_name> = grid-column
<cssproperty_name> = grid-column-end
<cssproperty_name> = grid-column-gap
<cssproperty_name> = grid-column-start
<cssproperty_name> = grid-gap
<cssproperty_name> = grid-row
<cssproperty_name> = grid-row-end
<cssproperty_name> = grid-row-gap
<cssproperty_name> = grid-row-start
<cssproperty_name> = grid-template
<cssproperty_name> = grid-template-areas
<cssproperty_name> = grid-template-columns
<cssproperty_name> = grid-template-rows
<cssproperty_name> = height
<cssproperty_name> = hyphens
<cssproperty_name> = image-orientation
<cssproperty_name> = image-rendering
<cssproperty_name> = isolation
<cssproperty_name> = justify-content
<cssproperty_name> = justify-items
<cssproperty_name> = justify-self
<cssproperty_name> = kerning
<cssproperty_name> = left
<cssproperty_name> = letter-spacing
<cssproperty_name> = lighting-color
<cssproperty_name> = line-break
<cssproperty_name> = line-height
<cssproperty_name> = list-style
<cssproperty_name> = list-style-image
<cssproperty_name> = list-style-position
<cssproperty_name> = list-style-type
<cssproperty_name> = margin
<cssproperty_name> = margin-bottom
<cssproperty_name> = margin-left
<cssproperty_name> = margin-right
<cssproperty_name> = margin-top
<cssproperty_name> = marker
<cssproperty_name> = marker-mid
<cssproperty_name> = mask-source-type
<cssproperty_name> = max-height
<cssproperty_name> = max-width
<cssproperty_name> = max-zoom
<cssproperty_name> = min-height
<cssproperty_name> = min-width
<cssproperty_name> = min-zoom
<cssproperty_name> = mix-blend-mode
<cssproperty_name> = motion
<cssproperty_name> = motion-offset
<cssproperty_name> = motion-path
<cssproperty_name> = motion-rotation
<cssproperty_name> = mso-background-source
<cssproperty_name> = mso-bidi-font-size
<cssproperty_name> = mso-border-alt
<cssproperty_name> = mso-border-left-alt
<cssproperty_name> = mso-border-top-alt
<cssproperty_name> = mso-data-placement
<cssproperty_name> = mso-displayed-decimal-separator
<cssproperty_name> = mso-displayed-thousand-separator
<cssproperty_name> = mso-fareast-font-family
<cssproperty_name> = mso-font-charset
<cssproperty_name> = mso-font-kerning
<cssproperty_name> = mso-generic-font-family
<cssproperty_name> = mso-height-source
<cssproperty_name> = mso-ignore
<cssproperty_name> = mso-number-format
<cssproperty_name> = mso-outline-level
<cssproperty_name> = mso-padding-alt
<cssproperty_name> = mso-pagination
<cssproperty_name> = mso-pattern
<cssproperty_name> = mso-protection
<cssproperty_name> = mso-rotate
<cssproperty_name> = mso-style-id
<cssproperty_name> = mso-style-name
<cssproperty_name> = mso-style-next
<cssproperty_name> = mso-style-parent
<cssproperty_name> = mso-width-alt
<cssproperty_name> = mso-width-source
<cssproperty_name> = object-fit
<cssproperty_name> = object-position
<cssproperty_name> = offset
<cssproperty_name> = offset-anchor
<cssproperty_name> = offset-distance
<cssproperty_name> = offset-path
<cssproperty_name> = offset-position
<cssproperty_name> = offset-rotation
<cssproperty_name> = opacity
<cssproperty_name> = order
<cssproperty_name> = orientation
<cssproperty_name> = orphans
<cssproperty_name> = outline
<cssproperty_name> = outline-bottom
<cssproperty_name> = outline-color
<cssproperty_name> = outline-offset
<cssproperty_name> = outline-style
<cssproperty_name> = outline-width
<cssproperty_name> = overflow
<cssproperty_name> = overflow-anchor
<cssproperty_name> = overflow-wrap
<cssproperty_name> = overflow-x
<cssproperty_name> = overflow-y
<cssproperty_name> = oxverflow
<cssproperty_name> = padding
<cssproperty_name> = padding-bottom
<cssproperty_name> = padding-left
<cssproperty_name> = padding-right
<cssproperty_name> = padding-top
<cssproperty_name> = page
<cssproperty_name> = page-break-after
<cssproperty_name> = page-break-before
<cssproperty_name> = page-break-inside
<cssproperty_name> = perspective
<cssproperty_name> = perspective-origin
<cssproperty_name> = pointer-events
<cssproperty_name> = position
<cssproperty_name> = postion
<cssproperty_name> = prince-hyphens
<cssproperty_name> = quotes
<cssproperty_name> = resize
<cssproperty_name> = right
<cssproperty_name> = rotate
<cssproperty_name> = rotation
<cssproperty_name> = rotation-code
<cssproperty_name> = rx
<cssproperty_name> = ry
<cssproperty_name> = scale
<cssproperty_name> = scroll-behavior
<cssproperty_name> = scroll-snap-coordinate
<cssproperty_name> = scroll-snap-destination
<cssproperty_name> = scroll-snap-points-x
<cssproperty_name> = scroll-snap-points-y
<cssproperty_name> = scroll-snap-type
<cssproperty_name> = shape-image-threshold
<cssproperty_name> = shape-inside
<cssproperty_name> = shape-margin
<cssproperty_name> = shape-outside
<cssproperty_name> = snap-height
<cssproperty_name> = src
<cssproperty_name> = stop-color
<cssproperty_name> = stop-opacity
<cssproperty_name> = stroke
<cssproperty_name> = stroke-dasharray
<cssproperty_name> = stroke-dashoffset
<cssproperty_name> = stroke-linecap
<cssproperty_name> = stroke-linejoin
<cssproperty_name> = stroke-miterlimit
<cssproperty_name> = stroke-opacity
<cssproperty_name> = stroke-width
<cssproperty_name> = tab-size
<cssproperty_name> = table-layout
<cssproperty_name> = text-align
<cssproperty_name> = text-align-last
<cssproperty_name> = text-anchor
<cssproperty_name> = text-combine-upright
<cssproperty_name> = text-decoration
<cssproperty_name> = text-decoration-color
<cssproperty_name> = text-decoration-line
<cssproperty_name> = text-decoration-style
<cssproperty_name> = text-decoration-upright
<cssproperty_name> = text-indent
<cssproperty_name> = text-justify
<cssproperty_name> = text-orientation
<cssproperty_name> = text-overflow
<cssproperty_name> = text-rendering
<cssproperty_name> = text-shadow
<cssproperty_name> = text-transform
<cssproperty_name> = text-underline
<cssproperty_name> = text-underline-position
<cssproperty_name> = top
<cssproperty_name> = touch-action
<cssproperty_name> = transform
<cssproperty_name> = transform-origin
<cssproperty_name> = transform-style
<cssproperty_name> = transition
<cssproperty_name> = transition-delay
<cssproperty_name> = transition-duration
<cssproperty_name> = transition-properties
<cssproperty_name> = transition-property
<cssproperty_name> = transition-timing-function
<cssproperty_name> = translate
<cssproperty_name> = unicode-bidi
<cssproperty_name> = user-select
<cssproperty_name> = user-zoom
<cssproperty_name> = vector-effect
<cssproperty_name> = vertical-align
<cssproperty_name> = visibility
<cssproperty_name> = weight
<cssproperty_name> = white
<cssproperty_name> = white-space
<cssproperty_name> = whitespace
<cssproperty_name> = widows
<cssproperty_name> = width
<cssproperty_name> = will-change
<cssproperty_name> = word-break
<cssproperty_name> = word-space
<cssproperty_name> = word-spacing
<cssproperty_name> = word-wrap
<cssproperty_name> = writing-mode
<cssproperty_name> = z-index
<cssproperty_name> = zoom
<cssproperty_value> = <cssproperty_-ms-flex-align>
<cssproperty_value> = <cssproperty_-ms-font-feature-settings>
<cssproperty_value> = <cssproperty_-ms-text-combine-horizontal>
<cssproperty_value> = <cssproperty_-ms-user-select>
<cssproperty_value> = <cssproperty_-webkit-align-content>
<cssproperty_value> = <cssproperty_-webkit-align-items>
<cssproperty_value> = <cssproperty_-webkit-align-self>
<cssproperty_value> = <cssproperty_-webkit-animation>
<cssproperty_value> = <cssproperty_-webkit-animation-delay>
<cssproperty_value> = <cssproperty_-webkit-animation-direction>
<cssproperty_value> = <cssproperty_-webkit-animation-duration>
<cssproperty_value> = <cssproperty_-webkit-animation-fill-mode>
<cssproperty_value> = <cssproperty_-webkit-animation-iteration-count>
<cssproperty_value> = <cssproperty_-webkit-animation-name>
<cssproperty_value> = <cssproperty_-webkit-animation-play-state>
<cssproperty_value> = <cssproperty_-webkit-animation-timing-function>
<cssproperty_value> = <cssproperty_-webkit-app-region>
<cssproperty_value> = <cssproperty_-webkit-appearance>
<cssproperty_value> = <cssproperty_-webkit-backface-visibility>
<cssproperty_value> = <cssproperty_-webkit-background-clip>
<cssproperty_value> = <cssproperty_-webkit-background-origin>
<cssproperty_value> = <cssproperty_-webkit-background-size>
<cssproperty_value> = <cssproperty_-webkit-border-after>
<cssproperty_value> = <cssproperty_-webkit-border-after-color>
<cssproperty_value> = <cssproperty_-webkit-border-after-width>
<cssproperty_value> = <cssproperty_-webkit-border-before>
<cssproperty_value> = <cssproperty_-webkit-border-before-color>
<cssproperty_value> = <cssproperty_-webkit-border-before-style>
<cssproperty_value> = <cssproperty_-webkit-border-before-width>
<cssproperty_value> = <cssproperty_-webkit-border-bottom-left-radius>
<cssproperty_value> = <cssproperty_-webkit-border-bottom-right-radius>
<cssproperty_value> = <cssproperty_-webkit-border-end>
<cssproperty_value> = <cssproperty_-webkit-border-end-color>
<cssproperty_value> = <cssproperty_-webkit-border-end-width>
<cssproperty_value> = <cssproperty_-webkit-border-image>
<cssproperty_value> = <cssproperty_-webkit-border-radius>
<cssproperty_value> = <cssproperty_-webkit-border-start>
<cssproperty_value> = <cssproperty_-webkit-border-start-color>
<cssproperty_value> = <cssproperty_-webkit-border-start-width>
<cssproperty_value> = <cssproperty_-webkit-border-top-left-radius>
<cssproperty_value> = <cssproperty_-webkit-border-top-right-radius>
<cssproperty_value> = <cssproperty_-webkit-border-vertical-spacing>
<cssproperty_value> = <cssproperty_-webkit-box-align>
<cssproperty_value> = <cssproperty_-webkit-box-decoration-break>
<cssproperty_value> = <cssproperty_-webkit-box-direction>
<cssproperty_value> = <cssproperty_-webkit-box-flex>
<cssproperty_value> = <cssproperty_-webkit-box-flex-group>
<cssproperty_value> = <cssproperty_-webkit-box-lines>
<cssproperty_value> = <cssproperty_-webkit-box-ordinal-group>
<cssproperty_value> = <cssproperty_-webkit-box-orient>
<cssproperty_value> = <cssproperty_-webkit-box-pack>
<cssproperty_value> = <cssproperty_-webkit-box-reflect>
<cssproperty_value> = <cssproperty_-webkit-box-shadow>
<cssproperty_value> = <cssproperty_-webkit-box-sizing>
<cssproperty_value> = <cssproperty_-webkit-clip-path>
<cssproperty_value> = <cssproperty_-webkit-color-correction>
<cssproperty_value> = <cssproperty_-webkit-column-break-after>
<cssproperty_value> = <cssproperty_-webkit-column-break-before>
<cssproperty_value> = <cssproperty_-webkit-column-break-inside>
<cssproperty_value> = <cssproperty_-webkit-column-count>
<cssproperty_value> = <cssproperty_-webkit-column-fill>
<cssproperty_value> = <cssproperty_-webkit-column-gap>
<cssproperty_value> = <cssproperty_-webkit-column-rule>
<cssproperty_value> = <cssproperty_-webkit-column-rule-color>
<cssproperty_value> = <cssproperty_-webkit-column-rule-style>
<cssproperty_value> = <cssproperty_-webkit-column-rule-width>
<cssproperty_value> = <cssproperty_-webkit-column-span>
<cssproperty_value> = <cssproperty_-webkit-column-width>
<cssproperty_value> = <cssproperty_-webkit-columns>
<cssproperty_value> = <cssproperty_-webkit-direction>
<cssproperty_value> = <cssproperty_-webkit-filter>
<cssproperty_value> = <cssproperty_-webkit-flex>
<cssproperty_value> = <cssproperty_-webkit-flex-direction>
<cssproperty_value> = <cssproperty_-webkit-flex-wrap>
<cssproperty_value> = <cssproperty_-webkit-flow-from>
<cssproperty_value> = <cssproperty_-webkit-flow-into>
<cssproperty_value> = <cssproperty_-webkit-font-feature-settings>
<cssproperty_value> = <cssproperty_-webkit-font-smoothing>
<cssproperty_value> = <cssproperty_-webkit-highlight>
<cssproperty_value> = <cssproperty_-webkit-hyphenate-character>
<cssproperty_value> = <cssproperty_-webkit-hyphens>
<cssproperty_value> = <cssproperty_-webkit-justify-content>
<cssproperty_value> = <cssproperty_-webkit-line-break>
<cssproperty_value> = <cssproperty_-webkit-line-clamp>
<cssproperty_value> = <cssproperty_-webkit-locale>
<cssproperty_value> = <cssproperty_-webkit-logical-height>
<cssproperty_value> = <cssproperty_-webkit-logical-width>
<cssproperty_value> = <cssproperty_-webkit-margin-after>
<cssproperty_value> = <cssproperty_-webkit-margin-after-collapse>
<cssproperty_value> = <cssproperty_-webkit-margin-before>
<cssproperty_value> = <cssproperty_-webkit-margin-before-collapse>
<cssproperty_value> = <cssproperty_-webkit-margin-bottom-collapse>
<cssproperty_value> = <cssproperty_-webkit-margin-collapse>
<cssproperty_value> = <cssproperty_-webkit-margin-end>
<cssproperty_value> = <cssproperty_-webkit-margin-start>
<cssproperty_value> = <cssproperty_-webkit-margin-top-collapse>
<cssproperty_value> = <cssproperty_-webkit-marquee-speed>
<cssproperty_value> = <cssproperty_-webkit-mask>
<cssproperty_value> = <cssproperty_-webkit-mask-box-image>
<cssproperty_value> = <cssproperty_-webkit-mask-box-image-outset>
<cssproperty_value> = <cssproperty_-webkit-mask-box-image-repeat>
<cssproperty_value> = <cssproperty_-webkit-mask-box-image-slice>
<cssproperty_value> = <cssproperty_-webkit-mask-box-image-source>
<cssproperty_value> = <cssproperty_-webkit-mask-box-image-width>
<cssproperty_value> = <cssproperty_-webkit-mask-clip>
<cssproperty_value> = <cssproperty_-webkit-mask-composite>
<cssproperty_value> = <cssproperty_-webkit-mask-image>
<cssproperty_value> = <cssproperty_-webkit-mask-origin>
<cssproperty_value> = <cssproperty_-webkit-mask-position>
<cssproperty_value> = <cssproperty_-webkit-mask-repeat>
<cssproperty_value> = <cssproperty_-webkit-mask-repeat-y>
<cssproperty_value> = <cssproperty_-webkit-mask-size>
<cssproperty_value> = <cssproperty_-webkit-min-logical-height>
<cssproperty_value> = <cssproperty_-webkit-nbsp-mode>
<cssproperty_value> = <cssproperty_-webkit-opacity>
<cssproperty_value> = <cssproperty_-webkit-overflow-scrolling>
<cssproperty_value> = <cssproperty_-webkit-padding-after>
<cssproperty_value> = <cssproperty_-webkit-padding-before>
<cssproperty_value> = <cssproperty_-webkit-padding-end>
<cssproperty_value> = <cssproperty_-webkit-padding-start>
<cssproperty_value> = <cssproperty_-webkit-perspective>
<cssproperty_value> = <cssproperty_-webkit-perspective-origin>
<cssproperty_value> = <cssproperty_-webkit-perspective-origin-x>
<cssproperty_value> = <cssproperty_-webkit-perspective-origin-y>
<cssproperty_value> = <cssproperty_-webkit-print-color-adjust>
<cssproperty_value> = <cssproperty_-webkit-rtl-ordering>
<cssproperty_value> = <cssproperty_-webkit-ruby-position>
<cssproperty_value> = <cssproperty_-webkit-shape-margin>
<cssproperty_value> = <cssproperty_-webkit-shape-outside>
<cssproperty_value> = <cssproperty_-webkit-tap-highlight-color>
<cssproperty_value> = <cssproperty_-webkit-text-combine>
<cssproperty_value> = <cssproperty_-webkit-text-decorations-in-effect>
<cssproperty_value> = <cssproperty_-webkit-text-emphasis>
<cssproperty_value> = <cssproperty_-webkit-text-emphasis-color>
<cssproperty_value> = <cssproperty_-webkit-text-emphasis-position>
<cssproperty_value> = <cssproperty_-webkit-text-emphasis-style>
<cssproperty_value> = <cssproperty_-webkit-text-fill-color>
<cssproperty_value> = <cssproperty_-webkit-text-orientation>
<cssproperty_value> = <cssproperty_-webkit-text-security>
<cssproperty_value> = <cssproperty_-webkit-text-stroke>
<cssproperty_value> = <cssproperty_-webkit-text-stroke-color>
<cssproperty_value> = <cssproperty_-webkit-text-stroke-width>
<cssproperty_value> = <cssproperty_-webkit-transform>
<cssproperty_value> = <cssproperty_-webkit-transform-origin>
<cssproperty_value> = <cssproperty_-webkit-transform-style>
<cssproperty_value> = <cssproperty_-webkit-transition>
<cssproperty_value> = <cssproperty_-webkit-transition-delay>
<cssproperty_value> = <cssproperty_-webkit-transition-duration>
<cssproperty_value> = <cssproperty_-webkit-transition-property>
<cssproperty_value> = <cssproperty_-webkit-transition-timing-function>
<cssproperty_value> = <cssproperty_-webkit-user-drag>
<cssproperty_value> = <cssproperty_-webkit-user-modify>
<cssproperty_value> = <cssproperty_-webkit-user-select>
<cssproperty_value> = <cssproperty_-webkit-wrap-flow>
<cssproperty_value> = <cssproperty_-webkit-writing-mode>
<cssproperty_value> = <cssproperty_align-content>
<cssproperty_value> = <cssproperty_align-items>
<cssproperty_value> = <cssproperty_align-self>
<cssproperty_value> = <cssproperty_alignx>
<cssproperty_value> = <cssproperty_animation>
<cssproperty_value> = <cssproperty_animation-delay>
<cssproperty_value> = <cssproperty_animation-direction>
<cssproperty_value> = <cssproperty_animation-duration>
<cssproperty_value> = <cssproperty_animation-fill-mode>
<cssproperty_value> = <cssproperty_animation-iteration-count>
<cssproperty_value> = <cssproperty_animation-name>
<cssproperty_value> = <cssproperty_animation-play-state>
<cssproperty_value> = <cssproperty_animation-timing-function>
<cssproperty_value> = <cssproperty_backdrop-filter>
<cssproperty_value> = <cssproperty_backface-visibility>
<cssproperty_value> = <cssproperty_background>
<cssproperty_value> = <cssproperty_background-attachment>
<cssproperty_value> = <cssproperty_background-blend-mode>
<cssproperty_value> = <cssproperty_background-clip>
<cssproperty_value> = <cssproperty_background-color>
<cssproperty_value> = <cssproperty_background-image>
<cssproperty_value> = <cssproperty_background-origin>
<cssproperty_value> = <cssproperty_background-position>
<cssproperty_value> = <cssproperty_background-position-x>
<cssproperty_value> = <cssproperty_background-repeat>
<cssproperty_value> = <cssproperty_background-repeat-x>
<cssproperty_value> = <cssproperty_background-repeat-y>
<cssproperty_value> = <cssproperty_background-size>
<cssproperty_value> = <cssproperty_baseline-shift>
<cssproperty_value> = <cssproperty_border>
<cssproperty_value> = <cssproperty_border-bottom>
<cssproperty_value> = <cssproperty_border-bottom-color>
<cssproperty_value> = <cssproperty_border-bottom-left-radius>
<cssproperty_value> = <cssproperty_border-bottom-right-radius>
<cssproperty_value> = <cssproperty_border-bottom-style>
<cssproperty_value> = <cssproperty_border-bottom-width>
<cssproperty_value> = <cssproperty_border-collapse>
<cssproperty_value> = <cssproperty_border-color>
<cssproperty_value> = <cssproperty_border-image>
<cssproperty_value> = <cssproperty_border-image-outset>
<cssproperty_value> = <cssproperty_border-image-repeat>
<cssproperty_value> = <cssproperty_border-image-slice>
<cssproperty_value> = <cssproperty_border-image-source>
<cssproperty_value> = <cssproperty_border-image-width>
<cssproperty_value> = <cssproperty_border-left>
<cssproperty_value> = <cssproperty_border-left-color>
<cssproperty_value> = <cssproperty_border-left-style>
<cssproperty_value> = <cssproperty_border-left-width>
<cssproperty_value> = <cssproperty_border-radius>
<cssproperty_value> = <cssproperty_border-right>
<cssproperty_value> = <cssproperty_border-right-color>
<cssproperty_value> = <cssproperty_border-right-style>
<cssproperty_value> = <cssproperty_border-right-width>
<cssproperty_value> = <cssproperty_border-size>
<cssproperty_value> = <cssproperty_border-spacing>
<cssproperty_value> = <cssproperty_border-style>
<cssproperty_value> = <cssproperty_border-top>
<cssproperty_value> = <cssproperty_border-top-color>
<cssproperty_value> = <cssproperty_border-top-left-radius>
<cssproperty_value> = <cssproperty_border-top-right-radius>
<cssproperty_value> = <cssproperty_border-top-style>
<cssproperty_value> = <cssproperty_border-top-width>
<cssproperty_value> = <cssproperty_border-width>
<cssproperty_value> = <cssproperty_bottom>
<cssproperty_value> = <cssproperty_box-align>
<cssproperty_value> = <cssproperty_box-decoration-break>
<cssproperty_value> = <cssproperty_box-direction>
<cssproperty_value> = <cssproperty_box-flex>
<cssproperty_value> = <cssproperty_box-flex-group>
<cssproperty_value> = <cssproperty_box-ordinal-group>
<cssproperty_value> = <cssproperty_box-orient>
<cssproperty_value> = <cssproperty_box-pack>
<cssproperty_value> = <cssproperty_box-reflect>
<cssproperty_value> = <cssproperty_box-shadow>
<cssproperty_value> = <cssproperty_box-sizing>
<cssproperty_value> = <cssproperty_break-after>
<cssproperty_value> = <cssproperty_break-before>
<cssproperty_value> = <cssproperty_break-inside>
<cssproperty_value> = <cssproperty_caption-side>
<cssproperty_value> = <cssproperty_cellpadding>
<cssproperty_value> = <cssproperty_cellspacing>
<cssproperty_value> = <cssproperty_clear>
<cssproperty_value> = <cssproperty_clip>
<cssproperty_value> = <cssproperty_clip-path>
<cssproperty_value> = <cssproperty_color>
<cssproperty_value> = <cssproperty_color-interpolation-filters>
<cssproperty_value> = <cssproperty_color-profile>
<cssproperty_value> = <cssproperty_column-break-after>
<cssproperty_value> = <cssproperty_column-break-before>
<cssproperty_value> = <cssproperty_column-count>
<cssproperty_value> = <cssproperty_column-fill>
<cssproperty_value> = <cssproperty_column-gap>
<cssproperty_value> = <cssproperty_column-rule>
<cssproperty_value> = <cssproperty_column-rule-style>
<cssproperty_value> = <cssproperty_column-span>
<cssproperty_value> = <cssproperty_column-width>
<cssproperty_value> = <cssproperty_columns>
<cssproperty_value> = <cssproperty_contain>
<cssproperty_value> = <cssproperty_content>
<cssproperty_value> = <cssproperty_counter-increment>
<cssproperty_value> = <cssproperty_counter-reset>
<cssproperty_value> = <cssproperty_css-float>
<cssproperty_value> = <cssproperty_cursor>
<cssproperty_value> = <cssproperty_cx>
<cssproperty_value> = <cssproperty_cy>
<cssproperty_value> = <cssproperty_direction>
<cssproperty_value> = <cssproperty_display>
<cssproperty_value> = <cssproperty_dominant-baseline>
<cssproperty_value> = <cssproperty_empty-cells>
<cssproperty_value> = <cssproperty_fill>
<cssproperty_value> = <cssproperty_fill-opacity>
<cssproperty_value> = <cssproperty_fill-rule>
<cssproperty_value> = <cssproperty_filter>
<cssproperty_value> = <cssproperty_flex>
<cssproperty_value> = <cssproperty_flex-basis>
<cssproperty_value> = <cssproperty_flex-direction>
<cssproperty_value> = <cssproperty_flex-flow>
<cssproperty_value> = <cssproperty_flex-grow>
<cssproperty_value> = <cssproperty_flex-shrink>
<cssproperty_value> = <cssproperty_flex-wrap>
<cssproperty_value> = <cssproperty_float>
<cssproperty_value> = <cssproperty_flood-color>
<cssproperty_value> = <cssproperty_flood-opacity>
<cssproperty_value> = <cssproperty_font>
<cssproperty_value> = <cssproperty_font-face>
<cssproperty_value> = <cssproperty_font-family>
<cssproperty_value> = <cssproperty_font-feature-settings>
<cssproperty_value> = <cssproperty_font-kerning>
<cssproperty_value> = <cssproperty_font-size>
<cssproperty_value> = <cssproperty_font-size-adjust>
<cssproperty_value> = <cssproperty_font-stretch>
<cssproperty_value> = <cssproperty_font-style>
<cssproperty_value> = <cssproperty_font-variant>
<cssproperty_value> = <cssproperty_font-variant-caps>
<cssproperty_value> = <cssproperty_font-variant-ligatures>
<cssproperty_value> = <cssproperty_font-vendor>
<cssproperty_value> = <cssproperty_font-weight>
<cssproperty_value> = <cssproperty_fonty-family>
<cssproperty_value> = <cssproperty_grid>
<cssproperty_value> = <cssproperty_grid-area>
<cssproperty_value> = <cssproperty_grid-auto-columns>
<cssproperty_value> = <cssproperty_grid-auto-flow>
<cssproperty_value> = <cssproperty_grid-auto-rows>
<cssproperty_value> = <cssproperty_grid-column>
<cssproperty_value> = <cssproperty_grid-column-end>
<cssproperty_value> = <cssproperty_grid-column-gap>
<cssproperty_value> = <cssproperty_grid-column-start>
<cssproperty_value> = <cssproperty_grid-gap>
<cssproperty_value> = <cssproperty_grid-row>
<cssproperty_value> = <cssproperty_grid-row-end>
<cssproperty_value> = <cssproperty_grid-row-gap>
<cssproperty_value> = <cssproperty_grid-row-start>
<cssproperty_value> = <cssproperty_grid-template>
<cssproperty_value> = <cssproperty_grid-template-areas>
<cssproperty_value> = <cssproperty_grid-template-columns>
<cssproperty_value> = <cssproperty_grid-template-rows>
<cssproperty_value> = <cssproperty_height>
<cssproperty_value> = <cssproperty_hyphens>
<cssproperty_value> = <cssproperty_image-orientation>
<cssproperty_value> = <cssproperty_image-rendering>
<cssproperty_value> = <cssproperty_isolation>
<cssproperty_value> = <cssproperty_justify-content>
<cssproperty_value> = <cssproperty_justify-items>
<cssproperty_value> = <cssproperty_justify-self>
<cssproperty_value> = <cssproperty_kerning>
<cssproperty_value> = <cssproperty_left>
<cssproperty_value> = <cssproperty_letter-spacing>
<cssproperty_value> = <cssproperty_lighting-color>
<cssproperty_value> = <cssproperty_line-break>
<cssproperty_value> = <cssproperty_line-height>
<cssproperty_value> = <cssproperty_list-style>
<cssproperty_value> = <cssproperty_list-style-image>
<cssproperty_value> = <cssproperty_list-style-position>
<cssproperty_value> = <cssproperty_list-style-type>
<cssproperty_value> = <cssproperty_margin>
<cssproperty_value> = <cssproperty_margin-bottom>
<cssproperty_value> = <cssproperty_margin-left>
<cssproperty_value> = <cssproperty_margin-right>
<cssproperty_value> = <cssproperty_margin-top>
<cssproperty_value> = <cssproperty_marker>
<cssproperty_value> = <cssproperty_marker-mid>
<cssproperty_value> = <cssproperty_mask-source-type>
<cssproperty_value> = <cssproperty_max-height>
<cssproperty_value> = <cssproperty_max-width>
<cssproperty_value> = <cssproperty_max-zoom>
<cssproperty_value> = <cssproperty_min-height>
<cssproperty_value> = <cssproperty_min-width>
<cssproperty_value> = <cssproperty_min-zoom>
<cssproperty_value> = <cssproperty_mix-blend-mode>
<cssproperty_value> = <cssproperty_motion>
<cssproperty_value> = <cssproperty_motion-offset>
<cssproperty_value> = <cssproperty_motion-path>
<cssproperty_value> = <cssproperty_motion-rotation>
<cssproperty_value> = <cssproperty_mso-background-source>
<cssproperty_value> = <cssproperty_mso-bidi-font-size>
<cssproperty_value> = <cssproperty_mso-border-alt>
<cssproperty_value> = <cssproperty_mso-border-left-alt>
<cssproperty_value> = <cssproperty_mso-border-top-alt>
<cssproperty_value> = <cssproperty_mso-data-placement>
<cssproperty_value> = <cssproperty_mso-displayed-decimal-separator>
<cssproperty_value> = <cssproperty_mso-displayed-thousand-separator>
<cssproperty_value> = <cssproperty_mso-fareast-font-family>
<cssproperty_value> = <cssproperty_mso-font-charset>
<cssproperty_value> = <cssproperty_mso-font-kerning>
<cssproperty_value> = <cssproperty_mso-generic-font-family>
<cssproperty_value> = <cssproperty_mso-height-source>
<cssproperty_value> = <cssproperty_mso-ignore>
<cssproperty_value> = <cssproperty_mso-number-format>
<cssproperty_value> = <cssproperty_mso-outline-level>
<cssproperty_value> = <cssproperty_mso-padding-alt>
<cssproperty_value> = <cssproperty_mso-pagination>
<cssproperty_value> = <cssproperty_mso-pattern>
<cssproperty_value> = <cssproperty_mso-protection>
<cssproperty_value> = <cssproperty_mso-rotate>
<cssproperty_value> = <cssproperty_mso-style-id>
<cssproperty_value> = <cssproperty_mso-style-name>
<cssproperty_value> = <cssproperty_mso-style-next>
<cssproperty_value> = <cssproperty_mso-style-parent>
<cssproperty_value> = <cssproperty_mso-width-alt>
<cssproperty_value> = <cssproperty_mso-width-source>
<cssproperty_value> = <cssproperty_object-fit>
<cssproperty_value> = <cssproperty_object-position>
<cssproperty_value> = <cssproperty_offset>
<cssproperty_value> = <cssproperty_offset-anchor>
<cssproperty_value> = <cssproperty_offset-distance>
<cssproperty_value> = <cssproperty_offset-path>
<cssproperty_value> = <cssproperty_offset-position>
<cssproperty_value> = <cssproperty_offset-rotation>
<cssproperty_value> = <cssproperty_opacity>
<cssproperty_value> = <cssproperty_order>
<cssproperty_value> = <cssproperty_orientation>
<cssproperty_value> = <cssproperty_orphans>
<cssproperty_value> = <cssproperty_outline>
<cssproperty_value> = <cssproperty_outline-bottom>
<cssproperty_value> = <cssproperty_outline-color>
<cssproperty_value> = <cssproperty_outline-offset>
<cssproperty_value> = <cssproperty_outline-style>
<cssproperty_value> = <cssproperty_outline-width>
<cssproperty_value> = <cssproperty_overflow>
<cssproperty_value> = <cssproperty_overflow-anchor>
<cssproperty_value> = <cssproperty_overflow-wrap>
<cssproperty_value> = <cssproperty_overflow-x>
<cssproperty_value> = <cssproperty_overflow-y>
<cssproperty_value> = <cssproperty_oxverflow>
<cssproperty_value> = <cssproperty_padding>
<cssproperty_value> = <cssproperty_padding-bottom>
<cssproperty_value> = <cssproperty_padding-left>
<cssproperty_value> = <cssproperty_padding-right>
<cssproperty_value> = <cssproperty_padding-top>
<cssproperty_value> = <cssproperty_page>