-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss_properties.yaml
More file actions
1574 lines (1574 loc) · 67 KB
/
Copy pathcss_properties.yaml
File metadata and controls
1574 lines (1574 loc) · 67 KB
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
!!python/object/apply:collections.defaultdict
args:
- !!python/name:builtins.list ''
dictitems:
'@':
- brief: Specifies the character encoding used in the style sheet
category: C
link: https://www.w3schools.com/cssref/atrule_charset.php
name: '@charset'
- brief: "Define styles for elements in container, depending on the container's\
\ \n size or style"
category: C
link: https://www.w3schools.com/cssref/atrule_container.php
name: '@container'
- brief: Lets you define your own counter styles
category: C
link: https://www.w3schools.com/cssref/atrule_counter-style.php
name: '@counter-style'
- brief: Specifies a custom font to use to display text
category: F
link: https://www.w3schools.com/cssref/atrule_font-face.php
name: '@font-face'
- brief: Allows you to customize the default values of a font-palette
category: F
link: https://www.w3schools.com/cssref/atrule_font-palette-values.php
name: '@font-palette-values'
- brief: Allows you to import a style sheet into another style sheet
category: I
link: https://www.w3schools.com/cssref/atrule_import.php
name: '@import'
- brief: "Controls the steps in an animation by defining styles for points along\
\ \n the animation sequence"
category: K
link: https://www.w3schools.com/cssref/atrule_keyframes.php
name: '@keyframes'
- brief: Controls how the CSS cascade layers evaluates the order of styles
category: L
link: https://www.w3schools.com/cssref/atrule_layer.php
name: '@layer'
- brief: Sets the style rules for different media types/devices/sizes
category: M
link: https://www.w3schools.com/cssref/atrule_media.php
name: '@media'
- brief: Defines an XML namespace to be used in the style sheet
category: N
link: https://www.w3schools.com/cssref/atrule_namespace.php
name: '@namespace'
- brief: Customizes the dimension, orientation, and margins of printed pages
category: P
link: https://www.w3schools.com/cssref/atrule_page.php
name: '@page'
- brief: Defines custom CSS properties directly in the stylesheet without having
to run any JavaScript
category: P
link: https://www.w3schools.com/cssref/atrule_property.php
name: '@property'
- brief: "Allows you to select elements in specific DOM subtrees and target \n \
\ elements precisely without writing overly-specific selectors"
category: S
link: https://www.w3schools.com/cssref/atrule_scope.php
name: '@scope'
- brief: "Defines an element's starting styles before the element gets its first\
\ \n style update"
category: S
link: https://www.w3schools.com/cssref/atrule_starting-style.php
name: '@starting-style'
- brief: Used to test whether a browser supports a CSS feature
category: S
link: https://www.w3schools.com/cssref/atrule_supports.php
name: '@supports'
A:
- brief: Specifies an accent color for user-interface controls
category: A
link: https://www.w3schools.com/cssref/css4_pr_accent-color.php
name: accent-color
- brief: Specifies the alignment between the lines inside a flexible container when
the items do not use all available space
category: A
link: https://www.w3schools.com/cssref/css3_pr_align-content.php
name: align-content
- brief: Specifies the alignment for items inside a flexible container
category: A
link: https://www.w3schools.com/cssref/css3_pr_align-items.php
name: align-items
- brief: Specifies the alignment for selected items inside a flexible container
category: A
link: https://www.w3schools.com/cssref/css3_pr_align-self.php
name: align-self
- brief: Resets all properties (except unicode-bidi and direction)
category: A
link: https://www.w3schools.com/cssref/css3_pr_all.php
name: all
- brief: A shorthand property for all the animation-* properties
category: A
link: https://www.w3schools.com/cssref/css3_pr_animation.php
name: animation
- brief: Specifies a delay for the start of an animation
category: A
link: https://www.w3schools.com/cssref/css3_pr_animation-delay.php
name: animation-delay
- brief: "Specifies whether an animation should be played forward, backward or \n\
\ in alternate cycles"
category: A
link: https://www.w3schools.com/cssref/css3_pr_animation-direction.php
name: animation-direction
- brief: Specifies how long an animation should take to complete one cycle
category: A
link: https://www.w3schools.com/cssref/css3_pr_animation-duration.php
name: animation-duration
- brief: "Specifies a style for the element when the animation is not playing (before\
\ \n it starts, after it ends, or both)"
category: A
link: https://www.w3schools.com/cssref/css3_pr_animation-fill-mode.php
name: animation-fill-mode
- brief: Specifies the number of times an animation should be played
category: A
link: https://www.w3schools.com/cssref/css3_pr_animation-iteration-count.php
name: animation-iteration-count
- brief: Specifies a name for the @keyframes animation
category: A
link: https://www.w3schools.com/cssref/css3_pr_animation-name.php
name: animation-name
- brief: Specifies whether the animation is running or paused
category: A
link: https://www.w3schools.com/cssref/css3_pr_animation-play-state.php
name: animation-play-state
- brief: Specifies the speed curve of an animation
category: A
link: https://www.w3schools.com/cssref/css3_pr_animation-timing-function.php
name: animation-timing-function
- brief: Specifies preferred aspect ratio of an element
category: A
link: https://www.w3schools.com/cssref/css_pr_aspect-ratio.php
name: aspect-ratio
B:
- brief: Defines a graphical effect to the area behind an element
category: B
link: https://www.w3schools.com/cssref/css3_pr_backdrop-filter.php
name: backdrop-filter
- brief: Defines whether or not the back face of an element should be visible when
facing the user
category: B
link: https://www.w3schools.com/cssref/css3_pr_backface-visibility.php
name: backface-visibility
- brief: A shorthand property for all the background-* properties
category: B
link: https://www.w3schools.com/cssref/css3_pr_background.php
name: background
- brief: Sets whether a background image scrolls with the rest of the page, or is
fixed
category: B
link: https://www.w3schools.com/cssref/pr_background-attachment.php
name: background-attachment
- brief: Specifies the blending mode of each background layer (color/image)
category: B
link: https://www.w3schools.com/cssref/pr_background-blend-mode.php
name: background-blend-mode
- brief: "Defines how far the background (color or image) should extend within an\
\ \n element"
category: B
link: https://www.w3schools.com/cssref/css3_pr_background-clip.php
name: background-clip
- brief: Specifies the background color of an element
category: B
link: https://www.w3schools.com/cssref/pr_background-color.php
name: background-color
- brief: Specifies one or more background images for an element
category: B
link: https://www.w3schools.com/cssref/pr_background-image.php
name: background-image
- brief: Specifies the origin position of a background image
category: B
link: https://www.w3schools.com/cssref/css3_pr_background-origin.php
name: background-origin
- brief: Specifies the position of a background image
category: B
link: https://www.w3schools.com/cssref/pr_background-position.php
name: background-position
- brief: Specifies the position of a background image on x-axis
category: B
link: https://www.w3schools.com/cssref/css_pr_background-position-x.php
name: background-position-x
- brief: Specifies the position of a background image on y-axis
category: B
link: https://www.w3schools.com/cssref/css_pr_background-position-y.php
name: background-position-y
- brief: Sets if/how a background image will be repeated
category: B
link: https://www.w3schools.com/cssref/pr_background-repeat.php
name: background-repeat
- brief: Specifies the size of the background images
category: B
link: https://www.w3schools.com/cssref/css3_pr_background-size.php
name: background-size
- brief: Specifies the size of an element in block direction
category: B
link: https://www.w3schools.com/cssref/css_pr_block-size.php
name: block-size
- brief: A shorthand property for border-width, border-style and border-color
category: B
link: https://www.w3schools.com/cssref/pr_border.php
name: border
- brief: A shorthand property for border-block-width, border-block-style and border-block-color
category: B
link: https://www.w3schools.com/cssref/css_pr_border-block.php
name: border-block
- brief: Sets the color of the borders at start and end in the block direction
category: B
link: https://www.w3schools.com/cssref/css_pr_border-block-color.php
name: border-block-color
- brief: A shorthand property for border-block-end-width, border-block-end-style
and border-block-end-color
category: B
link: https://www.w3schools.com/cssref/css_pr_border-block-end.php
name: border-block-end
- brief: Sets the color of the border at the end in the block direction
category: B
link: https://www.w3schools.com/cssref/css_pr_border-block-end-color.php
name: border-block-end-color
- brief: Sets the style of the border at the end in the block direction
category: B
link: https://www.w3schools.com/cssref/css_pr_border-block-end-style.php
name: border-block-end-style
- brief: Sets the width of the border at the end in the block direction
category: B
link: https://www.w3schools.com/cssref/css_pr_border-block-end-width.php
name: border-block-end-width
- brief: A shorthand property for border-block-start-width, border-block-start-style
and border-block-start-color
category: B
link: https://www.w3schools.com/cssref/css_pr_border-block-start.php
name: border-block-start
- brief: Sets the color of the border at the start in the block direction
category: B
link: https://www.w3schools.com/cssref/css_pr_border-block-start-color.php
name: border-block-start-color
- brief: Sets the style of the border at the start in the block direction
category: B
link: https://www.w3schools.com/cssref/css_pr_border-block-start-style.php
name: border-block-start-style
- brief: Sets the width of the border at the start in the block direction
category: B
link: https://www.w3schools.com/cssref/css_pr_border-block-start-width.php
name: border-block-start-width
- brief: Sets the style of the borders at start and end in the block direction
category: B
link: https://www.w3schools.com/cssref/css_pr_border-block-style.php
name: border-block-style
- brief: Sets the width of the borders at start and end in the block direction
category: B
link: https://www.w3schools.com/cssref/css_pr_border-block-width.php
name: border-block-width
- brief: "A shorthand property for border-bottom-width, border-bottom-style \n \
\ and border-bottom-color"
category: B
link: https://www.w3schools.com/cssref/pr_border-bottom.php
name: border-bottom
- brief: Sets the color of the bottom border
category: B
link: https://www.w3schools.com/cssref/pr_border-bottom_color.php
name: border-bottom-color
- brief: Defines the radius of the border of the bottom-left corner
category: B
link: https://www.w3schools.com/cssref/css3_pr_border-bottom-left-radius.php
name: border-bottom-left-radius
- brief: Defines the radius of the border of the bottom-right corner
category: B
link: https://www.w3schools.com/cssref/css3_pr_border-bottom-right-radius.php
name: border-bottom-right-radius
- brief: Sets the style of the bottom border
category: B
link: https://www.w3schools.com/cssref/pr_border-bottom_style.php
name: border-bottom-style
- brief: Sets the width of the bottom border
category: B
link: https://www.w3schools.com/cssref/pr_border-bottom_width.php
name: border-bottom-width
- brief: Sets whether table borders should collapse into a single border or be separated
category: B
link: https://www.w3schools.com/cssref/pr_border-collapse.php
name: border-collapse
- brief: Sets the color of the four borders
category: B
link: https://www.w3schools.com/cssref/pr_border-color.php
name: border-color
- brief: "Sets the radius of the corner between the block-end and the inline-end\
\ \n sides of the element"
category: B
link: https://www.w3schools.com/cssref/css_pr_border-end-end-radius.php
name: border-end-end-radius
- brief: "Sets the radius of the corner between the block-end and the inline-start\
\ \n sides of the element"
category: B
link: https://www.w3schools.com/cssref/css_pr_border-end-start-radius.php
name: border-end-start-radius
- brief: A shorthand property for all the border-image-* properties
category: B
link: https://www.w3schools.com/cssref/css3_pr_border-image.php
name: border-image
- brief: Specifies the amount by which the border image area extends beyond the
border box
category: B
link: https://www.w3schools.com/cssref/css3_pr_border-image-outset.php
name: border-image-outset
- brief: Specifies whether the border image should be repeated, rounded or stretched
category: B
link: https://www.w3schools.com/cssref/css3_pr_border-image-repeat.php
name: border-image-repeat
- brief: Specifies how to slice the border image
category: B
link: https://www.w3schools.com/cssref/css3_pr_border-image-slice.php
name: border-image-slice
- brief: Specifies the path to the image to be used as a border
category: B
link: https://www.w3schools.com/cssref/css3_pr_border-image-source.php
name: border-image-source
- brief: Specifies the width of the border image
category: B
link: https://www.w3schools.com/cssref/css3_pr_border-image-width.php
name: border-image-width
- brief: A shorthand property for border-inline-width, border-inline-style and border-inline-color
category: B
link: https://www.w3schools.com/cssref/css_pr_border-inline.php
name: border-inline
- brief: Sets the color of the borders at start and end in the inline direction
category: B
link: https://www.w3schools.com/cssref/css_pr_border-inline-color.php
name: border-inline-color
- brief: A shorthand property for border-inline-end-width, border-inline-end-style
and border-inline-end-color
category: B
link: https://www.w3schools.com/cssref/css_pr_border-inline-end.php
name: border-inline-end
- brief: Sets the color of the border at the end in the inline direction
category: B
link: https://www.w3schools.com/cssref/css_pr_border-inline-end-color.php
name: border-inline-end-color
- brief: Sets the style of the border at the end in the inline direction
category: B
link: https://www.w3schools.com/cssref/css_pr_border-inline-end-style.php
name: border-inline-end-style
- brief: Sets the width of the border at the end in the inline direction
category: B
link: https://www.w3schools.com/cssref/css_pr_border-inline-end-width.php
name: border-inline-end-width
- brief: A shorthand property for border-inline-start-width, border-inline-start-style
and border-inline-start-color
category: B
link: https://www.w3schools.com/cssref/css_pr_border-inline-start.php
name: border-inline-start
- brief: Sets the color of the border at the start in the inline direction
category: B
link: https://www.w3schools.com/cssref/css_pr_border-inline-start-color.php
name: border-inline-start-color
- brief: Sets the style of the border at the start in the inline direction
category: B
link: https://www.w3schools.com/cssref/css_pr_border-inline-start-style.php
name: border-inline-start-style
- brief: Sets the width of the border at the start in the inline direction
category: B
link: https://www.w3schools.com/cssref/css_pr_border-inline-start-width.php
name: border-inline-start-width
- brief: Sets the style of the borders at start and end in the inline direction
category: B
link: https://www.w3schools.com/cssref/css_pr_border-inline-style.php
name: border-inline-style
- brief: Sets the width of the borders at start and end in the inline direction
category: B
link: https://www.w3schools.com/cssref/css_pr_border-inline-width.php
name: border-inline-width
- brief: A shorthand property for all the border-left-* properties
category: B
link: https://www.w3schools.com/cssref/pr_border-left.php
name: border-left
- brief: Sets the color of the left border
category: B
link: https://www.w3schools.com/cssref/pr_border-left_color.php
name: border-left-color
- brief: Sets the style of the left border
category: B
link: https://www.w3schools.com/cssref/pr_border-left_style.php
name: border-left-style
- brief: Sets the width of the left border
category: B
link: https://www.w3schools.com/cssref/pr_border-left_width.php
name: border-left-width
- brief: A shorthand property for the four border-*-radius properties
category: B
link: https://www.w3schools.com/cssref/css3_pr_border-radius.php
name: border-radius
- brief: A shorthand property for all the border-right-* properties
category: B
link: https://www.w3schools.com/cssref/pr_border-right.php
name: border-right
- brief: Sets the color of the right border
category: B
link: https://www.w3schools.com/cssref/pr_border-right_color.php
name: border-right-color
- brief: Sets the style of the right border
category: B
link: https://www.w3schools.com/cssref/pr_border-right_style.php
name: border-right-style
- brief: Sets the width of the right border
category: B
link: https://www.w3schools.com/cssref/pr_border-right_width.php
name: border-right-width
- brief: Sets the distance between the borders of adjacent cells
category: B
link: https://www.w3schools.com/cssref/pr_border-spacing.php
name: border-spacing
- brief: "Sets the radius of the corner between the block-start and the inline-end\
\ \n sides of the element"
category: B
link: https://www.w3schools.com/cssref/css_pr_border-start-end-radius.php
name: border-start-end-radius
- brief: "Sets the radius of the corner between the block-start and the inline-start\
\ \n sides of the element"
category: B
link: https://www.w3schools.com/cssref/css_pr_border-start-start-radius.php
name: border-start-start-radius
- brief: Sets the style of the four borders
category: B
link: https://www.w3schools.com/cssref/pr_border-style.php
name: border-style
- brief: "A shorthand property for border-top-width, border-top-style and\n border-top-color"
category: B
link: https://www.w3schools.com/cssref/pr_border-top.php
name: border-top
- brief: Sets the color of the top border
category: B
link: https://www.w3schools.com/cssref/pr_border-top_color.php
name: border-top-color
- brief: Defines the radius of the border of the top-left corner
category: B
link: https://www.w3schools.com/cssref/css3_pr_border-top-left-radius.php
name: border-top-left-radius
- brief: Defines the radius of the border of the top-right corner
category: B
link: https://www.w3schools.com/cssref/css3_pr_border-top-right-radius.php
name: border-top-right-radius
- brief: Sets the style of the top border
category: B
link: https://www.w3schools.com/cssref/pr_border-top_style.php
name: border-top-style
- brief: Sets the width of the top border
category: B
link: https://www.w3schools.com/cssref/pr_border-top_width.php
name: border-top-width
- brief: Sets the width of the four borders
category: B
link: https://www.w3schools.com/cssref/pr_border-width.php
name: border-width
- brief: Sets the elements position, from the bottom of its parent element
category: B
link: https://www.w3schools.com/cssref/pr_pos_bottom.php
name: bottom
- brief: Sets the behavior of the background and border of an element at page-break,
or, for in-line elements, at line-break.
category: B
link: https://www.w3schools.com/cssref/css3_pr_box-decoration-break.php
name: box-decoration-break
- brief: The box-reflect property is used to create a reflection of an element.
category: B
link: https://www.w3schools.com/cssref/css_pr_box-reflect.php
name: box-reflect
- brief: Attaches one or more shadows to an element
category: B
link: https://www.w3schools.com/cssref/css3_pr_box-shadow.php
name: box-shadow
- brief: "Defines how the width and height of an element are calculated: should\
\ \n they include padding and borders, or not"
category: B
link: https://www.w3schools.com/cssref/css3_pr_box-sizing.php
name: box-sizing
- brief: "Specifies whether or not a page-, column-, or region-break should occur\
\ \n after the specified element"
category: B
link: https://www.w3schools.com/cssref/pr_break-after.php
name: break-after
- brief: "Specifies whether or not a page-, column-, or region-break should occur\
\ \n before the specified element"
category: B
link: https://www.w3schools.com/cssref/pr_break-before.php
name: break-before
- brief: "Specifies whether or not a page-, column-, or region-break should occur\
\ \n inside the specified element"
category: B
link: https://www.w3schools.com/cssref/pr_break-inside.php
name: break-inside
C:
- brief: Specifies the placement of a table caption
category: C
link: https://www.w3schools.com/cssref/pr_tab_caption-side.php
name: caption-side
- brief: "Specifies the color of the cursor (caret) in inputs, textareas, or any\
\ \n element that is editable"
category: C
link: https://www.w3schools.com/cssref/css3_pr_caret-color.php
name: caret-color
- brief: "Specifies what should happen with the element that is next to a floating\
\ \n element"
category: C
link: https://www.w3schools.com/cssref/pr_class_clear.php
name: clear
- brief: Deprecated in favor of clip-path. Clips an absolutely positioned element
category: C
link: https://www.w3schools.com/cssref/pr_pos_clip.php
name: clip
- brief: Clips an element to a basic shape or to an SVG source
category: C
link: https://www.w3schools.com/cssref/css3_pr_clip-path.php
name: clip-path
- brief: Sets the color of text
category: C
link: https://www.w3schools.com/cssref/pr_text_color.php
name: color
- brief: "Indicates which operating system color scheme an element should render\
\ \n with"
category: C
link: https://www.w3schools.com/cssref/css3_pr_color-scheme.php
name: color-scheme
- brief: Specifies the number of columns an element should be divided into
category: C
link: https://www.w3schools.com/cssref/css3_pr_column-count.php
name: column-count
- brief: Specifies how to fill columns, balanced or not
category: C
link: https://www.w3schools.com/cssref/css3_pr_column-fill.php
name: column-fill
- brief: Specifies the gap between the columns
category: C
link: https://www.w3schools.com/cssref/css3_pr_column-gap.php
name: column-gap
- brief: A shorthand property for all the column-rule-* properties
category: C
link: https://www.w3schools.com/cssref/css3_pr_column-rule.php
name: column-rule
- brief: Specifies the color of the rule between columns
category: C
link: https://www.w3schools.com/cssref/css3_pr_column-rule-color.php
name: column-rule-color
- brief: Specifies the style of the rule between columns
category: C
link: https://www.w3schools.com/cssref/css3_pr_column-rule-style.php
name: column-rule-style
- brief: Specifies the width of the rule between columns
category: C
link: https://www.w3schools.com/cssref/css3_pr_column-rule-width.php
name: column-rule-width
- brief: Specifies how many columns an element should span across
category: C
link: https://www.w3schools.com/cssref/css3_pr_column-span.php
name: column-span
- brief: Specifies the column width
category: C
link: https://www.w3schools.com/cssref/css3_pr_column-width.php
name: column-width
- brief: A shorthand property for column-width and column-count
category: C
link: https://www.w3schools.com/cssref/css3_pr_columns.php
name: columns
- brief: Used with the :before and :after pseudo-elements, to insert generated content
category: C
link: https://www.w3schools.com/cssref/pr_gen_content.php
name: content
- brief: Increases or decreases the value of one or more CSS counters
category: C
link: https://www.w3schools.com/cssref/pr_gen_counter-increment.php
name: counter-increment
- brief: Creates or resets one or more CSS counters
category: C
link: https://www.w3schools.com/cssref/pr_gen_counter-reset.php
name: counter-reset
- brief: Creates or sets one or more CSS counters
category: C
link: https://www.w3schools.com/cssref/pr_gen_counter-set.php
name: counter-set
- brief: Specifies the mouse cursor to be displayed when pointing over an element
category: C
link: https://www.w3schools.com/cssref/pr_class_cursor.php
name: cursor
D:
- brief: Specifies the text direction/writing direction
category: D
link: https://www.w3schools.com/cssref/pr_text_direction.php
name: direction
- brief: Specifies how a certain HTML element should be displayed
category: D
link: https://www.w3schools.com/cssref/pr_class_display.php
name: display
E:
- brief: Specifies whether or not to display borders and background on empty cells
in a table
category: E
link: https://www.w3schools.com/cssref/pr_tab_empty-cells.php
name: empty-cells
F:
- brief: Defines effects (e.g. blurring or color shifting) on an element before
the element is displayed
category: F
link: https://www.w3schools.com/cssref/css3_pr_filter.php
name: filter
- brief: "A shorthand property for the flex-grow, flex-shrink, and the \n flex-basis\
\ \n properties"
category: F
link: https://www.w3schools.com/cssref/css3_pr_flex.php
name: flex
- brief: Specifies the initial length of a flexible item
category: F
link: https://www.w3schools.com/cssref/css3_pr_flex-basis.php
name: flex-basis
- brief: Specifies the direction of the flexible items
category: F
link: https://www.w3schools.com/cssref/css3_pr_flex-direction.php
name: flex-direction
- brief: A shorthand property for the flex-direction and the flex-wrap properties
category: F
link: https://www.w3schools.com/cssref/css3_pr_flex-flow.php
name: flex-flow
- brief: Specifies how much the item will grow relative to the rest
category: F
link: https://www.w3schools.com/cssref/css3_pr_flex-grow.php
name: flex-grow
- brief: Specifies how the item will shrink relative to the rest
category: F
link: https://www.w3schools.com/cssref/css3_pr_flex-shrink.php
name: flex-shrink
- brief: Specifies whether the flexible items should wrap or not
category: F
link: https://www.w3schools.com/cssref/css3_pr_flex-wrap.php
name: flex-wrap
- brief: "Specifies whether an element should float to the left, right, or not at\
\ \n all"
category: F
link: https://www.w3schools.com/cssref/pr_class_float.php
name: float
- brief: "A shorthand property for the font-style, font-variant, font-weight, \n\
\ font-size/line-height, and the font-family properties"
category: F
link: https://www.w3schools.com/cssref/pr_font_font.php
name: font
- brief: Specifies the font family for text
category: F
link: https://www.w3schools.com/cssref/pr_font_font-family.php
name: font-family
- brief: Allows control over advanced typographic features in OpenType fonts
category: F
link: https://www.w3schools.com/cssref/css3_pr_font-feature-settings.php
name: font-feature-settings
- brief: Controls the usage of the kerning information (how letters are spaced)
category: F
link: https://www.w3schools.com/cssref/css3_pr_font-kerning.php
name: font-kerning
- brief: Specifies the font size of text
category: F
link: https://www.w3schools.com/cssref/pr_font_font-size.php
name: font-size
- brief: Preserves the readability and size of text when fallback font occurs
category: F
link: https://www.w3schools.com/cssref/css3_pr_font-size-adjust.php
name: font-size-adjust
- brief: Selects a normal, condensed, or expanded face from a font family
category: F
link: https://www.w3schools.com/cssref/css3_pr_font-stretch.php
name: font-stretch
- brief: Specifies the font style for text
category: F
link: https://www.w3schools.com/cssref/pr_font_font-style.php
name: font-style
- brief: Specifies whether or not a text should be displayed in a small-caps font
category: F
link: https://www.w3schools.com/cssref/pr_font_font-variant.php
name: font-variant
- brief: Controls the usage of alternate glyphs for capital letters
category: F
link: https://www.w3schools.com/cssref/css3_pr_font-variant-caps.php
name: font-variant-caps
- brief: Specifies the weight of a font
category: F
link: https://www.w3schools.com/cssref/pr_font_weight.php
name: font-weight
G:
- brief: A shorthand property for the row-gap and the column-gap properties
category: G
link: https://www.w3schools.com/cssref/css3_pr_gap.php
name: gap
- brief: "A shorthand property for the grid-template-rows, \n grid-template-columns,\
\ grid-template-areas, grid-auto-rows, \n grid-auto-columns, and the grid-auto-flow\
\ properties"
category: G
link: https://www.w3schools.com/cssref/pr_grid.php
name: grid
- brief: Either specifies a name for the grid item, or this property is a shorthand
property for the grid-row-start, grid-column-start, grid-row-end, and grid-column-end
properties
category: G
link: https://www.w3schools.com/cssref/pr_grid-area.php
name: grid-area
- brief: Specifies a default column size
category: G
link: https://www.w3schools.com/cssref/pr_grid-auto-columns.php
name: grid-auto-columns
- brief: Specifies how auto-placed items are inserted in the grid
category: G
link: https://www.w3schools.com/cssref/pr_grid-auto-flow.php
name: grid-auto-flow
- brief: Specifies a default row size
category: G
link: https://www.w3schools.com/cssref/pr_grid-auto-rows.php
name: grid-auto-rows
- brief: A shorthand property for the grid-column-start and the grid-column-end
properties
category: G
link: https://www.w3schools.com/cssref/pr_grid-column.php
name: grid-column
- brief: Specifies where to end the grid item
category: G
link: https://www.w3schools.com/cssref/pr_grid-column-end.php
name: grid-column-end
- brief: Specifies where to start the grid item
category: G
link: https://www.w3schools.com/cssref/pr_grid-column-start.php
name: grid-column-start
- brief: A shorthand property for the grid-row-start and the grid-row-end properties
category: G
link: https://www.w3schools.com/cssref/pr_grid-row.php
name: grid-row
- brief: Specifies where to end the grid item
category: G
link: https://www.w3schools.com/cssref/pr_grid-row-end.php
name: grid-row-end
- brief: Specifies where to start the grid item
category: G
link: https://www.w3schools.com/cssref/pr_grid-row-start.php
name: grid-row-start
- brief: "A shorthand property for the grid-template-rows, grid-template-columns\
\ \n and grid-areas properties"
category: G
link: https://www.w3schools.com/cssref/pr_grid-template.php
name: grid-template
- brief: Specifies how to display columns and rows, using named grid items
category: G
link: https://www.w3schools.com/cssref/pr_grid-template-areas.php
name: grid-template-areas
- brief: Specifies the size of the columns, and how many columns in a grid layout
category: G
link: https://www.w3schools.com/cssref/pr_grid-template-columns.php
name: grid-template-columns
- brief: Specifies the size of the rows in a grid layout
category: G
link: https://www.w3schools.com/cssref/pr_grid-template-rows.php
name: grid-template-rows
H:
- brief: Specifies whether a punctuation character may be placed outside the line
box
category: H
link: https://www.w3schools.com/cssref/css3_pr_hanging-punctuation.php
name: hanging-punctuation
- brief: Sets the height of an element
category: H
link: https://www.w3schools.com/cssref/pr_dim_height.php
name: height
- brief: Sets how to split words to improve the layout of text
category: H
link: https://www.w3schools.com/cssref/css3_pr_hyphens.php
name: hyphens
- brief: Sets the character used at the end of line, before a hyphenation break
category: H
link: https://www.w3schools.com/cssref/css3_pr_hyphenate-character.php
name: hypenate-character
I:
- brief: Specifies the type of algorithm to use for image scaling
category: I
link: https://www.w3schools.com/cssref/css3_pr_image-rendering.php
name: image-rendering
- brief: "Specifies the size of the initial-letter and optionally the number of\
\ \n lines the initial letter should sink (down in the text)"
category: I
link: https://www.w3schools.com/cssref/css3_pr_initial-letter.php
name: initial-letter
- brief: Specifies the size of an element in the inline direction
category: I
link: https://www.w3schools.com/cssref/css_pr_inline-size.php
name: inline-size
- brief: Specifies the distance between an element and the parent element
category: I
link: https://www.w3schools.com/cssref/css_pr_inset.php
name: inset
- brief: Specifies the distance between an element and the parent element in the
block direction
category: I
link: https://www.w3schools.com/cssref/css_pr_inset-block.php
name: inset-block
- brief: Specifies the distance between the end of an element and the parent element
in the block direction
category: I
link: https://www.w3schools.com/cssref/css_pr_inset-block-end.php
name: inset-block-end
- brief: Specifies the distance between the start of an element and the parent element
in the block direction
category: I
link: https://www.w3schools.com/cssref/css_pr_inset-block-start.php
name: inset-block-start
- brief: Specifies the distance between an element and the parent element in the
inline direction
category: I
link: https://www.w3schools.com/cssref/css_pr_inset-inline.php
name: inset-inline
- brief: Specifies the distance between the end of an element and the parent element
in the inline direction
category: I
link: https://www.w3schools.com/cssref/css_pr_inset-inline-end.php
name: inset-inline-end
- brief: Specifies the distance between the start of an element and the parent element
in the inline direction
category: I
link: https://www.w3schools.com/cssref/css_pr_inset-inline-start.php
name: inset-inline-start
- brief: Defines whether an element must create a new stacking content
category: I
link: https://www.w3schools.com/cssref/css3_pr_isolation.php
name: isolation
J:
- brief: Specifies the alignment between the items inside a flexible container when
the items do not use all available space
category: J
link: https://www.w3schools.com/cssref/css3_pr_justify-content.php
name: justify-content
- brief: Is set on the grid container. Specifies the alignment of grid items in
the inline direction
category: J
link: https://www.w3schools.com/cssref/css_pr_justify-items.php
name: justify-items
- brief: Is set on the grid item. Specifies the alignment of the grid item in the
inline direction
category: J
link: https://www.w3schools.com/cssref/css_pr_justify-self.php
name: justify-self
L:
- brief: Specifies the left position of a positioned element
category: L
link: https://www.w3schools.com/cssref/pr_pos_left.php
name: left
- brief: Increases or decreases the space between characters in a text
category: L
link: https://www.w3schools.com/cssref/pr_text_letter-spacing.php
name: letter-spacing
- brief: Sets the line height
category: L
link: https://www.w3schools.com/cssref/pr_dim_line-height.php
name: line-height
- brief: Sets all the properties for a list in one declaration
category: L
link: https://www.w3schools.com/cssref/pr_list-style.php
name: list-style
- brief: Specifies an image as the list-item marker
category: L
link: https://www.w3schools.com/cssref/pr_list-style-image.php
name: list-style-image
- brief: Specifies the position of the list-item markers (bullet points)
category: L
link: https://www.w3schools.com/cssref/pr_list-style-position.php
name: list-style-position
- brief: Specifies the type of list-item marker
category: L
link: https://www.w3schools.com/cssref/pr_list-style-type.php
name: list-style-type
M:
- brief: Sets all the margin properties in one declaration
category: M
link: https://www.w3schools.com/cssref/pr_margin.php
name: margin
- brief: Specifies the margin in the block direction
category: M
link: https://www.w3schools.com/cssref/css_pr_margin-block.php
name: margin-block
- brief: Specifies the margin at the end in the block direction
category: M
link: https://www.w3schools.com/cssref/css_pr_margin-block-end.php
name: margin-block-end
- brief: Specifies the margin at the start in the block direction
category: M
link: https://www.w3schools.com/cssref/css_pr_margin-block-start.php
name: margin-block-start
- brief: Sets the bottom margin of an element
category: M
link: https://www.w3schools.com/cssref/pr_margin-bottom.php
name: margin-bottom
- brief: Specifies the margin in the inline direction
category: M
link: https://www.w3schools.com/cssref/css_pr_margin-inline.php
name: margin-inline
- brief: Specifies the margin at the end in the inline direction
category: M
link: https://www.w3schools.com/cssref/css_pr_margin-inline-end.php
name: margin-inline-end
- brief: Specifies the margin at the start in the inline direction
category: M
link: https://www.w3schools.com/cssref/css_pr_margin-inline-start.php
name: margin-inline-start
- brief: Sets the left margin of an element
category: M
link: https://www.w3schools.com/cssref/pr_margin-left.php
name: margin-left
- brief: Sets the right margin of an element
category: M
link: https://www.w3schools.com/cssref/pr_margin-right.php
name: margin-right
- brief: Sets the top margin of an element
category: M
link: https://www.w3schools.com/cssref/pr_margin-top.php
name: margin-top
- brief: "Points to a marker that will be drawn on all vertices of an element's\
\ \n path (the first, middle, and last)"
category: M
link: https://www.w3schools.com/cssref/css3_pr_marker.php
name: marker
- brief: "Points to a marker that will be drawn on the last vertex of an element's\
\ \n path"
category: M
link: https://www.w3schools.com/cssref/css3_pr_marker-end.php
name: marker-end
- brief: "Points to a marker that will be drawn on all the middle vertices of an\
\ \n element's path"
category: M
link: https://www.w3schools.com/cssref/css3_pr_marker-mid.php
name: marker-mid
- brief: "Points to a marker that will be drawn on the first vertex of an \n \
\ element's path"
category: M
link: https://www.w3schools.com/cssref/css3_pr_marker-start.php
name: marker-start
- brief: "A shorthand property for mask-image, mask-mode, \n mask-repeat, mask-position,\
\ mask-clip, mask-origin,\n mask-size and mask-composite"
category: M
link: https://www.w3schools.com/cssref/css3_pr_mask.php
name: mask
- brief: Specifies which area is affected by a mask image
category: M
link: https://www.w3schools.com/cssref/css3_pr_mask-clip.php
name: mask-clip
- brief: "Specifies a compositing operation used on the current mask layer with\
\ \n the mask layers below it"
category: M
link: https://www.w3schools.com/cssref/css3_pr_mask-composite.php
name: mask-composite
- brief: Specifies an image to be used as a mask layer for an element
category: M
link: https://www.w3schools.com/cssref/css3_pr_mask-image.php
name: mask-image
- brief: "Specifies whether the mask layer image is treated as a luminance mask\
\ or \n as an alpha mask"
category: M
link: https://www.w3schools.com/cssref/css3_pr_mask-mode.php
name: mask-mode
- brief: Specifies the origin position (the mask position area) of a mask layer
image
category: M
link: https://www.w3schools.com/cssref/css3_pr_mask-origin.php
name: mask-origin
- brief: "Sets the starting position of a mask layer image (relative to the \n \
\ mask position area)"
category: M
link: https://www.w3schools.com/cssref/css3_pr_mask-position.php
name: mask-position
- brief: Specifies how the mask layer image is repeated
category: M
link: https://www.w3schools.com/cssref/css3_pr_mask-repeat.php
name: mask-repeat
- brief: Specifies the size of a mask layer image
category: M
link: https://www.w3schools.com/cssref/css3_pr_mask-size.php
name: mask-size
- brief: "Specifies whether an SVG <mask> element is treated as a luminance \n \
\ mask or as an alpha mask"
category: M
link: https://www.w3schools.com/cssref/css3_pr_mask-type.php
name: mask-type
- brief: Sets the maximum height of an element
category: M
link: https://www.w3schools.com/cssref/pr_dim_max-height.php
name: max-height
- brief: Sets the maximum width of an element
category: M
link: https://www.w3schools.com/cssref/pr_dim_max-width.php
name: max-width
- brief: Sets the maximum size of an element in the block direction
category: M
link: https://www.w3schools.com/cssref/css_pr_max-block-size.php
name: max-block-size
- brief: Sets the maximum size of an element in the inline direction
category: M
link: https://www.w3schools.com/cssref/css_pr_max-inline-size.php
name: max-inline-size
- brief: Sets the minimum size of an element in the block direction
category: M
link: https://www.w3schools.com/cssref/css_pr_min-block-size.php
name: min-block-size
- brief: Sets the minimum size of an element in the inline direction
category: M