spellr 0.5.3 → 0.6.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6ab2e491fac49775163c74ab18787f8abed0b46f96de0bbcb2fa00d02c3ebe89
4
- data.tar.gz: b6fcd62fb1a090e9f82e6d7b591eb44156f0a000ef1f7e74417a6d0cef9b8e8f
3
+ metadata.gz: d62f8784cec5a6100e381fe52ad9d8315203c488fb0b6673fa6adc2cac1e4375
4
+ data.tar.gz: a09e0852f55429b6697c7ac2a1388e4ca1c18ce8b33e1a505789ac091c51fea0
5
5
  SHA512:
6
- metadata.gz: be574430d9bd37fb857670e4e555e5c90559a62749e788af6e844c24a56f4c08aaeee5b7498f10c3a7edce39cf0393927e9439871ae59569e46e84f719569467
7
- data.tar.gz: b711c144f99e37d96bf789caa3dcabb36273218f6b02c02f368c2164575a41e99a0b32c2382c66679f3583ffc6ca85f1600e4aff59690de42af7f858f0aea929
6
+ metadata.gz: 6b9682c7bd5fe23a14b23393b55166cd743f1abe32f30bcb8990a146441b61b806e261ae9be4679878916e46f485280c97a127904c95edd022f7eb5e68999360
7
+ data.tar.gz: d1b64e78bed6b152606646afc56db541e07f89bfe3c507b642f2b8f827071656a604b44f63ab39508cdde01b44cf8a09461f70046285d74ad50c2ee98a278a9a
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ # v0.6.0
2
+ - add CSS wordlist from MDN
3
+ - improve html wordlist comprehensiveness from MDN and W3C
4
+ - add ruby 2.7 words
5
+
1
6
  # v0.5.3
2
7
  - update fast_ignore requirement. it's slightly faster.
3
8
  - misc other performance improvements
data/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Spell check your source code for fun and occasionally finding bugs
7
7
 
8
- This is inspired by https://github.com/myint/scspell, and uses wordlists from [SCOWL](http://wordlist.aspell.net) - see the license [here](https://github.com/robotdana/spellr/blob/master/wordlists/english.LICENSE.txt).
8
+ This is inspired by https://github.com/myint/scspell, and uses wordlists from [SCOWL](http://wordlist.aspell.net) and [MDN](http://wiki.developer.mozilla.org/).
9
9
 
10
10
  ## What makes a spell checker a source code spell checker?
11
11
 
@@ -223,3 +223,4 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/robotd
223
223
  ## License
224
224
 
225
225
  The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
226
+ Wordlists packaged with this gem have their own licenses, see them in https://github.com/robotdana/spellr/tree/master/wordlists
@@ -1,7 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require_relative 'config'
4
-
5
3
  module Spellr
6
4
  module StringFormat
7
5
  module_function
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Spellr
4
- VERSION = '0.5.3'
4
+ VERSION = '0.6.0'
5
5
  end
data/spellr.gemspec CHANGED
@@ -34,6 +34,7 @@ Gem::Specification.new do |spec|
34
34
  spec.add_development_dependency 'rubocop-rspec'
35
35
  spec.add_development_dependency 'terminal-table'
36
36
  spec.add_development_dependency 'tty_string'
37
- spec.add_dependency 'fast_ignore', '~> 0.5.1'
37
+ spec.add_development_dependency 'nokogiri'
38
+ spec.add_dependency 'fast_ignore', '~> 0.5.2'
38
39
  spec.add_dependency 'parallel', '~> 1.0'
39
40
  end
@@ -0,0 +1,646 @@
1
+ # keywords & values are from these sources:
2
+
3
+ [-moz-appearance (-webkit-appearance, appearance)](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-appearance) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-appearance$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
4
+ [-moz-background-inline-policy](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-background-inline-policy) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-background-inline-policy$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
5
+ [-moz-binding](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-binding) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-binding$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
6
+ [-moz-border-bottom-colors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-border-bottom-colors) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-border-bottom-colors$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
7
+ [-moz-border-left-colors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-border-left-colors) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-border-left-colors$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
8
+ [-moz-border-right-colors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-border-right-colors) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-border-right-colors$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
9
+ [-moz-border-top-colors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-border-top-colors) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-border-top-colors$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
10
+ [-moz-box-align](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-box-align) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-box-align$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
11
+ [-moz-box-direction](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-box-direction) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-box-direction$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
12
+ [-moz-box-flex](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-box-flex) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-box-flex$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
13
+ [-moz-box-orient](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-box-orient) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-box-orient$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
14
+ [-moz-box-pack](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-box-pack) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-box-pack$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
15
+ [-moz-calc](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-calc) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-calc$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
16
+ [-moz-context-properties](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-context-properties) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-context-properties$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
17
+ [-moz-device-pixel-ratio](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/-moz-device-pixel-ratio) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/-moz-device-pixel-ratio$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
18
+ [-moz-float-edge](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-float-edge) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-float-edge$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
19
+ [-moz-force-broken-image-icon](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-force-broken-image-icon) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-force-broken-image-icon$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
20
+ [-moz-hidden-unscrollable](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-hidden-unscrollable) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-hidden-unscrollable$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
21
+ [-moz-image-rect](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-image-rect) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-image-rect$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
22
+ [-moz-image-region](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-image-region) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-image-region$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
23
+ [-moz-mac-graphite-theme](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/-moz-mac-graphite-theme) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/-moz-mac-graphite-theme$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
24
+ [-moz-maemo-classic](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/-moz-maemo-classic) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/-moz-maemo-classic$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
25
+ [-moz-orient](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-orient) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-orient$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
26
+ [-moz-os-version](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/-moz-os-version) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/-moz-os-version$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
27
+ [-moz-osx-font-smoothing](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-osx-font-smoothing) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-osx-font-smoothing$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
28
+ [-moz-outline-radius](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-outline-radius) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-outline-radius$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
29
+ [-moz-scrollbar-end-backward](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/-moz-scrollbar-end-backward) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/-moz-scrollbar-end-backward$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
30
+ [-moz-scrollbar-end-forward](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/-moz-scrollbar-end-forward) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/-moz-scrollbar-end-forward$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
31
+ [-moz-scrollbar-start-backward](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/-moz-scrollbar-start-backward) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/-moz-scrollbar-start-backward$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
32
+ [-moz-scrollbar-start-forward](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/-moz-scrollbar-start-forward) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/-moz-scrollbar-start-forward$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
33
+ [-moz-scrollbar-thumb-proportional](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/-moz-scrollbar-thumb-proportional) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/-moz-scrollbar-thumb-proportional$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
34
+ [-moz-scrollbars-horizontal](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-scrollbars-horizontal) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-scrollbars-horizontal$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
35
+ [-moz-scrollbars-none](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-scrollbars-none) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-scrollbars-none$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
36
+ [-moz-scrollbars-vertical](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-scrollbars-vertical) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-scrollbars-vertical$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
37
+ [-moz-stack-sizing](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-stack-sizing) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-stack-sizing$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
38
+ [-moz-text-blink](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-text-blink) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-text-blink$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
39
+ [-moz-touch-enabled](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/-moz-touch-enabled) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/-moz-touch-enabled$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
40
+ [-moz-user-focus](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-user-focus) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-user-focus$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
41
+ [-moz-user-input](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-user-input) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-user-input$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
42
+ [-moz-user-modify](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-user-modify) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-user-modify$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
43
+ [-moz-user-select](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-user-select) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-user-select$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
44
+ [-moz-window-dragging](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-window-dragging) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-window-dragging$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
45
+ [-moz-window-shadow](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-window-shadow) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-moz-window-shadow$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
46
+ [-moz-windows-accent-color-in-titlebar](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/-moz-windows-accent-color-in-titlebar) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/-moz-windows-accent-color-in-titlebar$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
47
+ [-moz-windows-classic](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/-moz-windows-classic) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/-moz-windows-classic$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
48
+ [-moz-windows-compositor](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/-moz-windows-compositor) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/-moz-windows-compositor$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
49
+ [-moz-windows-default-theme](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/-moz-windows-default-theme) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/-moz-windows-default-theme$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
50
+ [-moz-windows-glass](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/-moz-windows-glass) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/-moz-windows-glass$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
51
+ [-moz-windows-theme](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/-moz-windows-theme) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/-moz-windows-theme$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
52
+ [-ms-accelerator](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-accelerator) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-accelerator$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
53
+ [-ms-block-progression](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-block-progression) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-block-progression$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
54
+ [-ms-content-zoom-chaining](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-content-zoom-chaining) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-content-zoom-chaining$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
55
+ [-ms-content-zoom-limit](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-content-zoom-limit) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-content-zoom-limit$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
56
+ [-ms-content-zoom-snap-points](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-content-zoom-snap-points) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-content-zoom-snap-points$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
57
+ [-ms-content-zoom-snap-type](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-content-zoom-snap-type) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-content-zoom-snap-type$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
58
+ [-ms-content-zoom-snap](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-content-zoom-snap) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-content-zoom-snap$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
59
+ [-ms-content-zooming](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-content-zooming) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-content-zooming$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
60
+ [-ms-filter](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-filter) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-filter$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
61
+ [-ms-flow-from](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-flow-from) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-flow-from$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
62
+ [-ms-flow-into](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-flow-into) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-flow-into$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
63
+ [-ms-high-contrast-adjust](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-high-contrast-adjust) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-high-contrast-adjust$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
64
+ [-ms-high-contrast](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/-ms-high-contrast) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/-ms-high-contrast$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
65
+ [-ms-hyphenate-limit-chars](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-hyphenate-limit-chars) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-hyphenate-limit-chars$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
66
+ [-ms-hyphenate-limit-lines](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-hyphenate-limit-lines) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-hyphenate-limit-lines$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
67
+ [-ms-ime-align](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-ime-align) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-ime-align$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
68
+ [-ms-overflow-style](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-overflow-style) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-overflow-style$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
69
+ [-ms-scroll-chaining](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-scroll-chaining) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-scroll-chaining$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
70
+ [-ms-scroll-limit-x-max](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-scroll-limit-x-max) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-scroll-limit-x-max$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
71
+ [-ms-scroll-limit-x-min](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-scroll-limit-x-min) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-scroll-limit-x-min$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
72
+ [-ms-scroll-limit-y-max](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-scroll-limit-y-max) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-scroll-limit-y-max$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
73
+ [-ms-scroll-limit-y-min](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-scroll-limit-y-min) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-scroll-limit-y-min$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
74
+ [-ms-scroll-limit](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-scroll-limit) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-scroll-limit$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
75
+ [-ms-scroll-rails](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-scroll-rails) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-scroll-rails$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
76
+ [-ms-scroll-snap-points-x](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-scroll-snap-points-x) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-scroll-snap-points-x$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
77
+ [-ms-scroll-snap-points-y](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-scroll-snap-points-y) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-scroll-snap-points-y$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
78
+ [-ms-scroll-snap-x](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-scroll-snap-x) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-scroll-snap-x$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
79
+ [-ms-scroll-snap-y](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-scroll-snap-y) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-scroll-snap-y$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
80
+ [-ms-scroll-translation](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-scroll-translation) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-scroll-translation$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
81
+ [-ms-text-autospace](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-text-autospace) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-text-autospace$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
82
+ [-ms-touch-select](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-touch-select) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-touch-select$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
83
+ [-ms-wrap-flow](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-wrap-flow) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-wrap-flow$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
84
+ [-ms-wrap-through](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-wrap-through) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-ms-wrap-through$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
85
+ [-webkit-align-content](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-align-content) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-align-content$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
86
+ [-webkit-align-items](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-align-items) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-align-items$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
87
+ [-webkit-align-self](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-align-self) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-align-self$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
88
+ [-webkit-animation-delay](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-animation-delay) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-animation-delay$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
89
+ [-webkit-animation-direction](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-animation-direction) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-animation-direction$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
90
+ [-webkit-animation-duration](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-animation-duration) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-animation-duration$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
91
+ [-webkit-animation-fill-mode](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-animation-fill-mode) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-animation-fill-mode$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
92
+ [-webkit-animation-iteration-count](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-animation-iteration-count) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-animation-iteration-count$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
93
+ [-webkit-animation-name](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-animation-name) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-animation-name$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
94
+ [-webkit-animation-play-state](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-animation-play-state) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-animation-play-state$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
95
+ [-webkit-animation-timing-function](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-animation-timing-function) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-animation-timing-function$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
96
+ [-webkit-animation](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-animation) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-animation$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
97
+ [-webkit-backface-visibility](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-backface-visibility) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-backface-visibility$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
98
+ [-webkit-background-clip](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-background-clip) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-background-clip$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
99
+ [-webkit-background-origin](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-background-origin) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-background-origin$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
100
+ [-webkit-background-size](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-background-size) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-background-size$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
101
+ [-webkit-border-before](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-border-before) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-border-before$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
102
+ [-webkit-border-fit](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-border-fit) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-border-fit$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
103
+ [-webkit-border-image](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-border-image) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-border-image$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
104
+ [-webkit-box-align](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-box-align) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-box-align$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
105
+ [-webkit-box-direction](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-box-direction) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-box-direction$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
106
+ [-webkit-box-flex](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-box-flex) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-box-flex$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
107
+ [-webkit-box-orient](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-box-orient) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-box-orient$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
108
+ [-webkit-box-pack](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-box-pack) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-box-pack$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
109
+ [-webkit-box-reflect](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-box-reflect) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-box-reflect$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
110
+ [-webkit-box-shadow](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-box-shadow) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-box-shadow$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
111
+ [-webkit-box-sizing](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-box-sizing) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-box-sizing$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
112
+ [-webkit-device-pixel-ratio](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/-webkit-device-pixel-ratio) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/-webkit-device-pixel-ratio$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
113
+ [-webkit-filter](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-filter) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-filter$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
114
+ [-webkit-flex-basis](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-flex-basis) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-flex-basis$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
115
+ [-webkit-flex-direction](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-flex-direction) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-flex-direction$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
116
+ [-webkit-flex-flow](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-flex-flow) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-flex-flow$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
117
+ [-webkit-flex-wrap](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-flex-wrap) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-flex-wrap$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
118
+ [-webkit-flex](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-flex) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-flex$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
119
+ [-webkit-font-feature-settings](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-font-feature-settings) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-font-feature-settings$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
120
+ [-webkit-font-kerning](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-font-kerning) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-font-kerning$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
121
+ [-webkit-font-smoothing](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-font-smoothing) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-font-smoothing$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
122
+ [-webkit-font-variant-ligatures](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-font-variant-ligatures) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-font-variant-ligatures$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
123
+ [-webkit-justify-content](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-justify-content) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-justify-content$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
124
+ [-webkit-line-clamp](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-line-clamp) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-line-clamp$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
125
+ [-webkit-mask-attachment](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-mask-attachment) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-mask-attachment$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
126
+ [-webkit-mask-box-image](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-mask-box-image) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-mask-box-image$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
127
+ [-webkit-mask-clip](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-mask-clip) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-mask-clip$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
128
+ [-webkit-mask-composite](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-mask-composite) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-mask-composite$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
129
+ [-webkit-mask-image](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-mask-image) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-mask-image$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
130
+ [-webkit-mask-origin](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-mask-origin) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-mask-origin$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
131
+ [-webkit-mask-position-x](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-mask-position-x) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-mask-position-x$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
132
+ [-webkit-mask-position-y](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-mask-position-y) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-mask-position-y$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
133
+ [-webkit-mask-repeat-x](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-mask-repeat-x) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-mask-repeat-x$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
134
+ [-webkit-mask-repeat-y](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-mask-repeat-y) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-mask-repeat-y$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
135
+ [-webkit-mask-repeat](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-mask-repeat) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-mask-repeat$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
136
+ [-webkit-mask-size](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-mask-size) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-mask-size$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
137
+ [-webkit-mask](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-mask) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-mask$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
138
+ [-webkit-overflow-scrolling](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-overflow-scrolling) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-overflow-scrolling$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
139
+ [-webkit-perspective-origin](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-perspective-origin) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-perspective-origin$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
140
+ [-webkit-perspective](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-perspective) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-perspective$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
141
+ [-webkit-print-color-adjust](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-print-color-adjust) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-print-color-adjust$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
142
+ [-webkit-text-size-adjust](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-text-size-adjust) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-text-size-adjust$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
143
+ [-webkit-touch-callout](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-touch-callout) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-touch-callout$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
144
+ [-webkit-transform-origin](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-transform-origin) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-transform-origin$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
145
+ [-webkit-transform](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-transform) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-transform$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
146
+ [-webkit-transition-duration](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-transition-duration) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-transition-duration$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
147
+ [-webkit-transition-property](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-transition-property) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-transition-property$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
148
+ [-webkit-transition-timing-function](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-transition-timing-function) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-transition-timing-function$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
149
+ [-webkit-transition](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-transition) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-transition$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
150
+ [-webkit-user-select](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-user-select) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/-webkit-user-select$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
151
+ [::after (:after)](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/::after) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/::after$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
152
+ [::before (:before)](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/::before) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/::before$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
153
+ [:dir()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/:dir) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/:dir$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
154
+ [:not()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/:not) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/:not$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
155
+ [:nth-child()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/:nth-child) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/:nth-child$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
156
+ [:nth-last-child()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/:nth-last-child) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/:nth-last-child$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
157
+ [:nth-last-of-type()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/:nth-last-of-type) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/:nth-last-of-type$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
158
+ [:nth-of-type()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/:nth-of-type) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/:nth-of-type$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
159
+ [<angle>](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/angle) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/angle$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
160
+ [<basic-shape>](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/basic-shape) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/basic-shape$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
161
+ [<blend-mode>](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/blend-mode) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/blend-mode$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
162
+ [<color>](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/color_value) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/color_value$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
163
+ [<custom-ident>](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/custom-ident) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/custom-ident$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
164
+ [<display-box>](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/display-box) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/display-box$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
165
+ [<display-inside>](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/display-inside) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/display-inside$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
166
+ [<display-internal>](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/display-internal) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/display-internal$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
167
+ [<display-legacy>](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/display-legacy) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/display-legacy$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
168
+ [<display-listitem>](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/display-listitem) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/display-listitem$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
169
+ [<display-outside>](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/display-outside) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/display-outside$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
170
+ [<filter-function>](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/filter-function) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/filter-function$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
171
+ [<flex>](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/flex_value) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/flex_value$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
172
+ [<frequency>](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/frequency) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/frequency$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
173
+ [<gradient>](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/gradient) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/gradient$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
174
+ [<image>](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/image) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/image$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
175
+ [<integer>](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/integer) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/integer$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
176
+ [<length>](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/length) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/length$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
177
+ [<number>](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/number) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/number$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
178
+ [<percentage>](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/percentage) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/percentage$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
179
+ [<position>](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/position_value) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/position_value$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
180
+ [<ratio>](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/ratio) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/ratio$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
181
+ [<resolution>](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/resolution) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/resolution$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
182
+ [<shape>](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/shape) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/shape$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
183
+ [<single-transition-timing-function>](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/single-transition-timing-function) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/single-transition-timing-function$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
184
+ [<string>](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/string) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/string$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
185
+ [<time>](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/time) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/time$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
186
+ [<timing-function>](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/timing-function) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/timing-function$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
187
+ [<transform-function>](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-function) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-function$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
188
+ [<url>](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/url) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/url$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
189
+ [@-moz-document](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@-moz-document) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@-moz-document$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
190
+ [@charset](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@charset) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@charset$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
191
+ [@counter-style](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@counter-style) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@counter-style$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
192
+ [@document](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@document) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@document$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
193
+ [@font-face](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@font-face) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@font-face$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
194
+ [@font-feature-values](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@font-feature-values) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@font-feature-values$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
195
+ [@import](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@import) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@import$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
196
+ [@keyframes](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@keyframes) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@keyframes$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
197
+ [@media](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
198
+ [@page](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@page) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@page$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
199
+ [@supports](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@supports) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@supports$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
200
+ [@viewport](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@viewport) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@viewport$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
201
+ [At-rules](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/At-rule) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/At-rule$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
202
+ [CSS reference](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/Reference) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/Reference$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
203
+ [MediaQueryList.addListener()](https://wiki.developer.mozilla.org/en-US/docs/Web/API/MediaQueryList/addListener) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/API/MediaQueryList/addListener$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
204
+ [Microsoft CSS extensions](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/Microsoft_Extensions) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/Microsoft_Extensions$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
205
+ [Mozilla CSS extensions](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/Mozilla_Extensions) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/Mozilla_Extensions$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
206
+ [Using media queries](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/Media_Queries/Using_media_queries) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/Media_Queries/Using_media_queries$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
207
+ [WebKit CSS extensions](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/WebKit_Extensions) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/WebKit_Extensions$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
208
+ [Window.matchMedia()](https://wiki.developer.mozilla.org/en-US/docs/Web/API/Window/matchMedia) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/API/Window/matchMedia$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
209
+ [align-content](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/align-content) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/align-content$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
210
+ [align-items](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/align-items) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/align-items$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
211
+ [align-self](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/align-self) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/align-self$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
212
+ [all](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/all) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/all$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
213
+ [animation-delay](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/animation-delay) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/animation-delay$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
214
+ [animation-direction](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/animation-direction) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/animation-direction$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
215
+ [animation-duration](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/animation-duration) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/animation-duration$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
216
+ [animation-fill-mode](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/animation-fill-mode) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/animation-fill-mode$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
217
+ [animation-iteration-count](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/animation-iteration-count) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/animation-iteration-count$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
218
+ [animation-name](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/animation-name) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/animation-name$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
219
+ [animation-play-state](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/animation-play-state) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/animation-play-state$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
220
+ [animation-timing-function](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/animation-timing-function) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/animation-timing-function$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
221
+ [animation](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/animation) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/animation$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
222
+ [any-hover](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/any-hover) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/any-hover$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
223
+ [any-pointer](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/any-pointer) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/any-pointer$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
224
+ [appearance (-moz-appearance, -webkit-appearance)](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/appearance) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/appearance$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
225
+ [aspect-ratio](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/aspect-ratio) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/aspect-ratio$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
226
+ [attr()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/attr) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/attr$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
227
+ [backdrop-filter](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
228
+ [backface-visibility](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/backface-visibility) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/backface-visibility$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
229
+ [background-attachment](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/background-attachment) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/background-attachment$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
230
+ [background-clip](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/background-clip) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/background-clip$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
231
+ [background-color](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/background-color) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/background-color$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
232
+ [background-image](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/background-image) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/background-image$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
233
+ [background-origin](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/background-origin) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/background-origin$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
234
+ [background-position](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/background-position) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/background-position$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
235
+ [background-repeat](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/background-repeat) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/background-repeat$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
236
+ [background-size](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/background-size) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/background-size$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
237
+ [background](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/background) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/background$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
238
+ [bleed](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@page/bleed) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@page/bleed$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
239
+ [block-size](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/block-size) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/block-size$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
240
+ [blur()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/filter-function/blur) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/filter-function/blur$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
241
+ [border-block-color](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-block-color) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-block-color$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
242
+ [border-block-end-color](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-block-end-color) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-block-end-color$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
243
+ [border-block-end-style](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-block-end-style) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-block-end-style$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
244
+ [border-block-end-width](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-block-end-width) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-block-end-width$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
245
+ [border-block-end](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-block-end) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-block-end$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
246
+ [border-block-start-color](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-block-start-color) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-block-start-color$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
247
+ [border-block-start-style](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-block-start-style) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-block-start-style$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
248
+ [border-block-start-width](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-block-start-width) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-block-start-width$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
249
+ [border-block-start](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-block-start) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-block-start$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
250
+ [border-block-style](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-block-style) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-block-style$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
251
+ [border-block-width](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-block-width) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-block-width$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
252
+ [border-block](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-block) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-block$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
253
+ [border-bottom-style](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-bottom-style) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-bottom-style$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
254
+ [border-bottom-width](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-bottom-width) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-bottom-width$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
255
+ [border-bottom](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-bottom) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-bottom$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
256
+ [border-collapse](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-collapse) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-collapse$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
257
+ [border-image-outset](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-image-outset) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-image-outset$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
258
+ [border-image-repeat](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-image-repeat) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-image-repeat$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
259
+ [border-image-slice](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-image-slice) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-image-slice$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
260
+ [border-image-source](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-image-source) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-image-source$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
261
+ [border-image-width](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-image-width) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-image-width$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
262
+ [border-image](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-image) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-image$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
263
+ [border-inline-color](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-inline-color) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-inline-color$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
264
+ [border-inline-end-color](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-inline-end-color) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-inline-end-color$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
265
+ [border-inline-end-style](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-inline-end-style) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-inline-end-style$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
266
+ [border-inline-end-width](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-inline-end-width) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-inline-end-width$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
267
+ [border-inline-end](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-inline-end) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-inline-end$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
268
+ [border-inline-start-color](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-inline-start-color) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-inline-start-color$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
269
+ [border-inline-start-style](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-inline-start-style) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-inline-start-style$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
270
+ [border-inline-start-width](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-inline-start-width) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-inline-start-width$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
271
+ [border-inline-start](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-inline-start) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-inline-start$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
272
+ [border-inline-style](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-inline-style) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-inline-style$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
273
+ [border-inline-width](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-inline-width) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-inline-width$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
274
+ [border-inline](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-inline) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-inline$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
275
+ [border-left-style](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-left-style) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-left-style$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
276
+ [border-left-width](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-left-width) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-left-width$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
277
+ [border-left](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-left) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-left$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
278
+ [border-right-style](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-right-style) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-right-style$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
279
+ [border-right-width](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-right-width) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-right-width$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
280
+ [border-right](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-right) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-right$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
281
+ [border-style](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-style) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-style$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
282
+ [border-top-style](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-top-style) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-top-style$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
283
+ [border-top-width](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-top-width) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-top-width$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
284
+ [border-top](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-top) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-top$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
285
+ [border-width](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-width) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border-width$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
286
+ [border](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/border$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
287
+ [bottom](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/bottom) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/bottom$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
288
+ [box-align](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/box-align) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/box-align$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
289
+ [box-decoration-break](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/box-decoration-break) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/box-decoration-break$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
290
+ [box-direction](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/box-direction) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/box-direction$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
291
+ [box-flex-group](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/box-flex-group) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/box-flex-group$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
292
+ [box-flex](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/box-flex) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/box-flex$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
293
+ [box-lines](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/box-lines) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/box-lines$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
294
+ [box-ordinal-group](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/box-ordinal-group) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/box-ordinal-group$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
295
+ [box-orient](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/box-orient) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/box-orient$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
296
+ [box-pack](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/box-pack) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/box-pack$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
297
+ [box-shadow](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/box-shadow) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/box-shadow$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
298
+ [box-sizing](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/box-sizing) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/box-sizing$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
299
+ [break-after](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/break-after) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/break-after$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
300
+ [break-before](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/break-before) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/break-before$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
301
+ [break-inside](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/break-inside) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/break-inside$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
302
+ [brightness()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/filter-function/brightness) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/filter-function/brightness$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
303
+ [calc()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/calc) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/calc$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
304
+ [caption-side](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/caption-side) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/caption-side$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
305
+ [caret-color](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/caret-color) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/caret-color$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
306
+ [clamp()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/clamp) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/clamp$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
307
+ [clear](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/clear) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/clear$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
308
+ [clip-path](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/clip-path) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/clip-path$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
309
+ [clip](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/clip) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/clip$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
310
+ [color-adjust](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/color-adjust) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/color-adjust$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
311
+ [color-gamut](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/color-gamut) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/color-gamut$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
312
+ [color-index](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/color-index) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/color-index$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
313
+ [color](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/color) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/color$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
314
+ [column-count](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/column-count) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/column-count$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
315
+ [column-fill](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/column-fill) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/column-fill$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
316
+ [column-gap (grid-column-gap)](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/column-gap) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/column-gap$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
317
+ [column-rule-style](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/column-rule-style) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/column-rule-style$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
318
+ [column-rule-width](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/column-rule-width) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/column-rule-width$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
319
+ [column-rule](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/column-rule) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/column-rule$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
320
+ [column-span](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/column-span) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/column-span$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
321
+ [column-width](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/column-width) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/column-width$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
322
+ [columns](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/columns) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/columns$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
323
+ [conic-gradient()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/conic-gradient) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/conic-gradient$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
324
+ [contain](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/contain) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/contain$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
325
+ [content](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/content) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/content$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
326
+ [contrast()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/filter-function/contrast) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/filter-function/contrast$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
327
+ [counter()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/counter) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/counter$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
328
+ [counter-increment](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/counter-increment) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/counter-increment$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
329
+ [counter-reset](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/counter-reset) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/counter-reset$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
330
+ [counter-set](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/counter-set) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/counter-set$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
331
+ [counters()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/counters) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/counters$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
332
+ [cursor](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/cursor) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/cursor$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
333
+ [device-aspect-ratio](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/device-aspect-ratio) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/device-aspect-ratio$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
334
+ [device-height](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/device-height) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/device-height$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
335
+ [device-width](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/device-width) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/device-width$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
336
+ [direction](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/direction) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/direction$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
337
+ [display-mode](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/display-mode) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/display-mode$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
338
+ [display](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/display) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/display$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
339
+ [drop-shadow()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/filter-function/drop-shadow) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/filter-function/drop-shadow$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
340
+ [element()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/element) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/element$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
341
+ [empty-cells](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/empty-cells) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/empty-cells$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
342
+ [env()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/env) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/env$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
343
+ [filter](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/filter) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/filter$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
344
+ [flex-basis](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/flex-basis) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/flex-basis$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
345
+ [flex-direction](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/flex-direction) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/flex-direction$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
346
+ [flex-flow](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/flex-flow) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/flex-flow$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
347
+ [flex-wrap](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/flex-wrap) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/flex-wrap$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
348
+ [flex](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/flex) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/flex$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
349
+ [float](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/float) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/float$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
350
+ [font-display](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
351
+ [font-family](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/font-family) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/font-family$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
352
+ [font-feature-settings](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/font-feature-settings) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/font-feature-settings$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
353
+ [font-kerning](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/font-kerning) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/font-kerning$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
354
+ [font-language-override](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/font-language-override) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/font-language-override$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
355
+ [font-optical-sizing](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/font-optical-sizing) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/font-optical-sizing$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
356
+ [font-size-adjust](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/font-size-adjust) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/font-size-adjust$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
357
+ [font-size](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/font-size) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/font-size$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
358
+ [font-stretch](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-stretch) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-stretch$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
359
+ [font-stretch](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/font-stretch) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/font-stretch$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
360
+ [font-style](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-style) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-style$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
361
+ [font-style](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/font-style) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/font-style$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
362
+ [font-synthesis](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/font-synthesis) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/font-synthesis$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
363
+ [font-variant-alternates](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/font-variant-alternates) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/font-variant-alternates$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
364
+ [font-variant-caps](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/font-variant-caps) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/font-variant-caps$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
365
+ [font-variant-east-asian](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/font-variant-east-asian) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/font-variant-east-asian$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
366
+ [font-variant-ligatures](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/font-variant-ligatures) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/font-variant-ligatures$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
367
+ [font-variant-numeric](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/font-variant-numeric) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/font-variant-numeric$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
368
+ [font-variant-position](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/font-variant-position) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/font-variant-position$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
369
+ [font-variant](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/font-variant) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/font-variant$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
370
+ [font-variation-settings](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-variation-settings) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-variation-settings$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
371
+ [font-variation-settings](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/font-variation-settings) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/font-variation-settings$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
372
+ [font-weight](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-weight) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-weight$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
373
+ [font-weight](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/font-weight) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/font-weight$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
374
+ [font](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/font) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/font$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
375
+ [forced-colors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/forced-colors) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/forced-colors$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
376
+ [grayscale()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/filter-function/grayscale) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/filter-function/grayscale$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
377
+ [grid-area](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/grid-area) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/grid-area$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
378
+ [grid-auto-columns](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-columns) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-columns$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
379
+ [grid-auto-flow](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
380
+ [grid-auto-rows](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
381
+ [grid-column-end](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/grid-column-end) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/grid-column-end$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
382
+ [grid-column-gap](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/grid-column-gap) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/grid-column-gap$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
383
+ [grid-column-start](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/grid-column-start) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/grid-column-start$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
384
+ [grid-column](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/grid-column) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/grid-column$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
385
+ [grid-row-end](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/grid-row-end) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/grid-row-end$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
386
+ [grid-row-start](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/grid-row-start) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/grid-row-start$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
387
+ [grid-row](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/grid-row) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/grid-row$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
388
+ [grid-template-areas](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/grid-template-areas) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/grid-template-areas$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
389
+ [grid-template-columns](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
390
+ [grid-template-rows](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/grid-template-rows) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/grid-template-rows$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
391
+ [grid-template](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/grid-template) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/grid-template$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
392
+ [grid](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/grid) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/grid$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
393
+ [grid](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/grid) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/grid$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
394
+ [hanging-punctuation](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/hanging-punctuation) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/hanging-punctuation$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
395
+ [height](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/height) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/height$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
396
+ [height](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@viewport/height) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@viewport/height$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
397
+ [height](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/height) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/height$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
398
+ [hover](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/hover) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/hover$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
399
+ [hue-rotate()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/filter-function/hue-rotate) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/filter-function/hue-rotate$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
400
+ [hyphens](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/hyphens) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/hyphens$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
401
+ [ident](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/ident) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/ident$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
402
+ [image-orientation](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/image-orientation) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/image-orientation$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
403
+ [image-rendering](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/image-rendering) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/image-rendering$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
404
+ [image-set()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/image-set) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/image-set$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
405
+ [inline-size](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/inline-size) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/inline-size$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
406
+ [inset-block-end](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/inset-block-end) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/inset-block-end$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
407
+ [inset-block-start](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/inset-block-start) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/inset-block-start$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
408
+ [inset-block](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/inset-block) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/inset-block$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
409
+ [inset-inline-end](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/inset-inline-end) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/inset-inline-end$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
410
+ [inset-inline-start](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/inset-inline-start) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/inset-inline-start$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
411
+ [inset-inline](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/inset-inline) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/inset-inline$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
412
+ [inset](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/inset) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/inset$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
413
+ [invert()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/filter-function/invert) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/filter-function/invert$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
414
+ [inverted-colors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/inverted-colors) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/inverted-colors$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
415
+ [isolation](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/isolation) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/isolation$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
416
+ [justify-content](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/justify-content) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/justify-content$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
417
+ [justify-items](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/justify-items) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/justify-items$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
418
+ [justify-self](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/justify-self) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/justify-self$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
419
+ [left](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/left) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/left$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
420
+ [letter-spacing](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/letter-spacing) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/letter-spacing$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
421
+ [light-level](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/light-level) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/light-level$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
422
+ [line-break](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/line-break) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/line-break$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
423
+ [line-height](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/line-height) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/line-height$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
424
+ [linear-gradient()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/linear-gradient) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/linear-gradient$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
425
+ [list-style-image](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/list-style-image) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/list-style-image$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
426
+ [list-style-position](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/list-style-position) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/list-style-position$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
427
+ [list-style-type](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/list-style-type) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/list-style-type$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
428
+ [list-style](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/list-style) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/list-style$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
429
+ [margin-block-end](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/margin-block-end) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/margin-block-end$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
430
+ [margin-block-start](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/margin-block-start) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/margin-block-start$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
431
+ [margin-block](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/margin-block) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/margin-block$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
432
+ [margin-bottom](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/margin-bottom) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/margin-bottom$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
433
+ [margin-inline-end](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/margin-inline-end) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/margin-inline-end$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
434
+ [margin-inline-start](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/margin-inline-start) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/margin-inline-start$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
435
+ [margin-inline](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/margin-inline) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/margin-inline$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
436
+ [margin-left](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/margin-left) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/margin-left$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
437
+ [margin-right](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/margin-right) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/margin-right$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
438
+ [margin-top](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/margin-top) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/margin-top$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
439
+ [margin](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/margin) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/margin$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
440
+ [marks](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@page/marks) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@page/marks$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
441
+ [mask-border-mode](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/mask-border-mode) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/mask-border-mode$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
442
+ [mask-border-outset](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/mask-border-outset) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/mask-border-outset$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
443
+ [mask-border-repeat](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/mask-border-repeat) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/mask-border-repeat$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
444
+ [mask-border-slice](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/mask-border-slice) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/mask-border-slice$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
445
+ [mask-border-source](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/mask-border-source) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/mask-border-source$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
446
+ [mask-border-width](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/mask-border-width) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/mask-border-width$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
447
+ [mask-border](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/mask-border) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/mask-border$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
448
+ [mask-clip](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/mask-clip) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/mask-clip$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
449
+ [mask-composite](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/mask-composite) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/mask-composite$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
450
+ [mask-image](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/mask-image) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/mask-image$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
451
+ [mask-mode](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/mask-mode) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/mask-mode$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
452
+ [mask-origin](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/mask-origin) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/mask-origin$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
453
+ [mask-repeat](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/mask-repeat) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/mask-repeat$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
454
+ [mask-size](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/mask-size) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/mask-size$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
455
+ [mask-type](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/mask-type) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/mask-type$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
456
+ [mask](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/mask) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/mask$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
457
+ [matrix()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-function/matrix) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-function/matrix$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
458
+ [matrix3d()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-function/matrix3d) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-function/matrix3d$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
459
+ [max()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/max) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/max$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
460
+ [max-block-size](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/max-block-size) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/max-block-size$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
461
+ [max-height](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@viewport/max-height) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@viewport/max-height$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
462
+ [max-height](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/max-height) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/max-height$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
463
+ [max-inline-size](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/max-inline-size) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/max-inline-size$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
464
+ [max-width](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@viewport/max-width) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@viewport/max-width$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
465
+ [max-width](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/max-width) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/max-width$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
466
+ [max-zoom](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@viewport/max-zoom) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@viewport/max-zoom$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
467
+ [min()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/min) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/min$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
468
+ [min-block-size](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/min-block-size) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/min-block-size$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
469
+ [min-height](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@viewport/min-height) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@viewport/min-height$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
470
+ [min-height](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/min-height) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/min-height$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
471
+ [min-inline-size](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/min-inline-size) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/min-inline-size$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
472
+ [min-width](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@viewport/min-width) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@viewport/min-width$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
473
+ [min-width](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/min-width) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/min-width$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
474
+ [min-zoom](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@viewport/min-zoom) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@viewport/min-zoom$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
475
+ [minmax()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/minmax) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/minmax$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
476
+ [monochrome](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/monochrome) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/monochrome$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
477
+ [msRegionOverflow](https://wiki.developer.mozilla.org/en-US/docs/Web/API/msRegionOverflow) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/API/msRegionOverflow$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
478
+ [negative](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@counter-style/negative) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@counter-style/negative$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
479
+ [object-fit](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/object-fit) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/object-fit$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
480
+ [offset-anchor](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/offset-anchor) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/offset-anchor$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
481
+ [offset-distance](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/offset-distance) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/offset-distance$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
482
+ [offset-path](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/offset-path) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/offset-path$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
483
+ [offset-rotate](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/offset-rotate) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/offset-rotate$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
484
+ [opacity()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/filter-function/opacity) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/filter-function/opacity$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
485
+ [opacity](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/opacity) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/opacity$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
486
+ [orientation](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/orientation) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/orientation$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
487
+ [orientation](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@viewport/orientation) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@viewport/orientation$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
488
+ [outline-color](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/outline-color) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/outline-color$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
489
+ [outline-offset](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/outline-offset) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/outline-offset$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
490
+ [outline-style](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/outline-style) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/outline-style$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
491
+ [outline-width](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/outline-width) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/outline-width$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
492
+ [outline](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/outline) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/outline$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
493
+ [overflow-anchor](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/overflow-anchor) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/overflow-anchor$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
494
+ [overflow-block](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/overflow-block) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/overflow-block$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
495
+ [overflow-block](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/overflow-block) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/overflow-block$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
496
+ [overflow-clip-box-block](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/overflow-clip-box-block) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/overflow-clip-box-block$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
497
+ [overflow-clip-box-inline](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/overflow-clip-box-inline) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/overflow-clip-box-inline$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
498
+ [overflow-clip-box](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/overflow-clip-box) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/overflow-clip-box$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
499
+ [overflow-inline](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/overflow-inline) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/overflow-inline$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
500
+ [overflow-inline](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/overflow-inline) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/overflow-inline$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
501
+ [overflow-wrap](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/overflow-wrap) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/overflow-wrap$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
502
+ [overflow-x](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/overflow-x) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/overflow-x$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
503
+ [overflow-y](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/overflow-y) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/overflow-y$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
504
+ [overflow](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/overflow) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/overflow$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
505
+ [overscroll-behavior-block](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/overscroll-behavior-block) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/overscroll-behavior-block$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
506
+ [overscroll-behavior-inline](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/overscroll-behavior-inline) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/overscroll-behavior-inline$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
507
+ [overscroll-behavior-x](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/overscroll-behavior-x) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/overscroll-behavior-x$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
508
+ [overscroll-behavior-y](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/overscroll-behavior-y) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/overscroll-behavior-y$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
509
+ [overscroll-behavior](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/overscroll-behavior) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/overscroll-behavior$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
510
+ [padding-block-end](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/padding-block-end) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/padding-block-end$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
511
+ [padding-block-start](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/padding-block-start) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/padding-block-start$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
512
+ [padding-block](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/padding-block) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/padding-block$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
513
+ [padding-inline-end](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/padding-inline-end) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/padding-inline-end$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
514
+ [padding-inline-start](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/padding-inline-start) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/padding-inline-start$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
515
+ [padding-inline](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/padding-inline) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/padding-inline$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
516
+ [page-break-after](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/page-break-after) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/page-break-after$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
517
+ [page-break-before](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/page-break-before) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/page-break-before$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
518
+ [page-break-inside](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/page-break-inside) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/page-break-inside$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
519
+ [paint()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/paint) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/paint$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
520
+ [paint-order](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/paint-order) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/paint-order$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
521
+ [perspective()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-function/perspective) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-function/perspective$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
522
+ [perspective-origin](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/perspective-origin) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/perspective-origin$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
523
+ [perspective](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/perspective) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/perspective$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
524
+ [place-content](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/place-content) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/place-content$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
525
+ [place-items](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/place-items) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/place-items$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
526
+ [place-self](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/place-self) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/place-self$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
527
+ [pointer-events](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/pointer-events) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/pointer-events$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
528
+ [pointer](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/pointer) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/pointer$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
529
+ [position](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/position) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/position$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
530
+ [prefers-color-scheme](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-color-scheme) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-color-scheme$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
531
+ [prefers-contrast](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-contrast) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-contrast$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
532
+ [prefers-reduced-motion](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-reduced-motion) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-reduced-motion$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
533
+ [prefers-reduced-transparency](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-reduced-transparency) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-reduced-transparency$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
534
+ [quotes](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/quotes) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/quotes$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
535
+ [radial-gradient()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/radial-gradient) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/radial-gradient$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
536
+ [range](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@counter-style/range) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@counter-style/range$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
537
+ [repeat()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/repeat) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/repeat$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
538
+ [repeating-linear-gradient()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/repeating-linear-gradient) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/repeating-linear-gradient$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
539
+ [repeating-radial-gradient()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/repeating-radial-gradient) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/repeating-radial-gradient$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
540
+ [resize](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/resize) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/resize$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
541
+ [resolution](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/resolution) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/resolution$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
542
+ [right](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/right) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/right$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
543
+ [rotate()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-function/rotate) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-function/rotate$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
544
+ [rotate3d()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-function/rotate3d) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-function/rotate3d$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
545
+ [rotateX()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-function/rotateX) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-function/rotateX$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
546
+ [rotateY()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-function/rotateY) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-function/rotateY$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
547
+ [rotateZ()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-function/rotateZ) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-function/rotateZ$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
548
+ [rotate](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/rotate) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/rotate$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
549
+ [ruby-position](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/ruby-position) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/ruby-position$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
550
+ [saturate()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/filter-function/saturate) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/filter-function/saturate$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
551
+ [scale()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-function/scale) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-function/scale$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
552
+ [scale3d()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-function/scale3d) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-function/scale3d$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
553
+ [scaleX()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-function/scaleX) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-function/scaleX$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
554
+ [scaleY()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-function/scaleY) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-function/scaleY$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
555
+ [scaleZ()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-function/scaleZ) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-function/scaleZ$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
556
+ [scale](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/scale) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/scale$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
557
+ [scan](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/scan) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/scan$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
558
+ [scripting](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/scripting) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/scripting$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
559
+ [scroll-behavior](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/scroll-behavior) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/scroll-behavior$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
560
+ [scroll-padding-block-end](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/scroll-padding-block-end) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/scroll-padding-block-end$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
561
+ [scroll-padding-block-start](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/scroll-padding-block-start) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/scroll-padding-block-start$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
562
+ [scroll-padding-block](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/scroll-padding-block) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/scroll-padding-block$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
563
+ [scroll-padding-bottom](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/scroll-padding-bottom) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/scroll-padding-bottom$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
564
+ [scroll-padding-inline-end](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/scroll-padding-inline-end) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/scroll-padding-inline-end$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
565
+ [scroll-padding-inline-start](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/scroll-padding-inline-start) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/scroll-padding-inline-start$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
566
+ [scroll-padding-inline](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/scroll-padding-inline) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/scroll-padding-inline$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
567
+ [scroll-padding-left](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/scroll-padding-left) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/scroll-padding-left$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
568
+ [scroll-padding-right](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/scroll-padding-right) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/scroll-padding-right$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
569
+ [scroll-padding-top](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/scroll-padding-top) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/scroll-padding-top$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
570
+ [scroll-padding](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/scroll-padding) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/scroll-padding$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
571
+ [scroll-snap-align](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/scroll-snap-align) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/scroll-snap-align$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
572
+ [scroll-snap-stop](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/scroll-snap-stop) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/scroll-snap-stop$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
573
+ [scroll-snap-type](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/scroll-snap-type) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/scroll-snap-type$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
574
+ [scrollbar-color](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/scrollbar-color) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/scrollbar-color$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
575
+ [scrollbar-width](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/scrollbar-width) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/scrollbar-width$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
576
+ [sepia()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/filter-function/sepia) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/filter-function/sepia$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
577
+ [shape-outside](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/shape-outside) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/shape-outside$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
578
+ [size](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@page/size) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@page/size$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
579
+ [skew()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-function/skew) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-function/skew$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
580
+ [skewX()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-function/skewX) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-function/skewX$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
581
+ [skewY()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-function/skewY) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-function/skewY$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
582
+ [speak-as](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@counter-style/speak-as) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@counter-style/speak-as$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
583
+ [src](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@font-face/src) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@font-face/src$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
584
+ [symbols()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/symbols) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/symbols$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
585
+ [system](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@counter-style/system) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@counter-style/system$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
586
+ [table-layout](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/table-layout) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/table-layout$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
587
+ [text-align-last](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/text-align-last) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/text-align-last$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
588
+ [text-align](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/text-align) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/text-align$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
589
+ [text-combine-upright](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/text-combine-upright) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/text-combine-upright$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
590
+ [text-decoration-line](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/text-decoration-line) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/text-decoration-line$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
591
+ [text-decoration-skip-ink](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/text-decoration-skip-ink) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/text-decoration-skip-ink$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
592
+ [text-decoration-style](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/text-decoration-style) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/text-decoration-style$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
593
+ [text-decoration-thickness](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/text-decoration-thickness) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/text-decoration-thickness$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
594
+ [text-decoration](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/text-decoration) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/text-decoration$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
595
+ [text-emphasis-color](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/text-emphasis-color) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/text-emphasis-color$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
596
+ [text-emphasis-position](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/text-emphasis-position) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/text-emphasis-position$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
597
+ [text-emphasis-style](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/text-emphasis-style) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/text-emphasis-style$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
598
+ [text-emphasis](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/text-emphasis) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/text-emphasis$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
599
+ [text-indent](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/text-indent) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/text-indent$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
600
+ [text-justify](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/text-justify) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/text-justify$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
601
+ [text-orientation](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/text-orientation) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/text-orientation$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
602
+ [text-overflow](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/text-overflow) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/text-overflow$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
603
+ [text-rendering](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/text-rendering) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/text-rendering$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
604
+ [text-shadow](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/text-shadow) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/text-shadow$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
605
+ [text-size-adjust](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/text-size-adjust) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/text-size-adjust$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
606
+ [text-transform](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/text-transform) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/text-transform$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
607
+ [text-underline-offset](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/text-underline-offset) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/text-underline-offset$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
608
+ [text-underline-position](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/text-underline-position) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/text-underline-position$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
609
+ [top](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/top) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/top$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
610
+ [touch-action](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/touch-action) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/touch-action$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
611
+ [transform-box](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-box) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-box$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
612
+ [transform-origin](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-origin) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-origin$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
613
+ [transform-style](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-style) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-style$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
614
+ [transform](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
615
+ [transition-duration](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transition-duration) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transition-duration$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
616
+ [transition-property](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transition-property) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transition-property$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
617
+ [transition-timing-function](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transition-timing-function) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transition-timing-function$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
618
+ [transition](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transition) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transition$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
619
+ [translate()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-function/translate) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-function/translate$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
620
+ [translate3d()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-function/translate3d) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-function/translate3d$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
621
+ [translateX()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-function/translateX) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-function/translateX$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
622
+ [translateY()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-function/translateY) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-function/translateY$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
623
+ [translateZ()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-function/translateZ) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-function/translateZ$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
624
+ [translate](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/translate) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/translate$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
625
+ [unicode-bidi](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/unicode-bidi) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/unicode-bidi$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
626
+ [unicode-range](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@font-face/unicode-range) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@font-face/unicode-range$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
627
+ [update](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/update-frequency) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/update-frequency$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
628
+ [user-select](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/user-select) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/user-select$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
629
+ [user-zoom](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@viewport/user-zoom) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@viewport/user-zoom$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
630
+ [var()](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/var) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/var$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
631
+ [vertical-align](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/vertical-align) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/vertical-align$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
632
+ [viewport-fit](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@viewport/viewport-fit) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@viewport/viewport-fit$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
633
+ [visibility](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/visibility) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/visibility$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
634
+ [white-space](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/white-space) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/white-space$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
635
+ [width](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/width) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@media/width$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
636
+ [width](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@viewport/width) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@viewport/width$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
637
+ [width](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/width) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/width$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
638
+ [will-change](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/will-change) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/will-change$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
639
+ [word-break](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/word-break) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/word-break$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
640
+ [word-spacing](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/word-spacing) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/word-spacing$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
641
+ [word-wrap](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/word-wrap) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/word-wrap$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
642
+ [writing-mode](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/writing-mode) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/writing-mode$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
643
+ [z-index](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/z-index) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/z-index$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
644
+ [zoom](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@viewport/zoom) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/@viewport/zoom$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
645
+ [zoom](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/zoom) by [Mozilla Contributors](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/zoom$history) is licensed under [CC-BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/)
646
+