├── README.md └── css-prefixes.json /README.md: -------------------------------------------------------------------------------- 1 | # CSS properties 2 | 3 | List of CSS properties supported by at least one of modern browsers. 4 | In alphabetical order. 5 | 6 | ## Legend 7 | 8 | If no version is given: 9 | 10 | * Safari = Safari 4 or later 11 | * Chrome = last version of Chrome (current one is 23) 12 | * Fx = Firefox 4 or later 13 | * IE = Internet Explorer 8 or later 14 | * O = Opera 11.60 or later 15 | 16 | If browser name is given in italics (e.g., *Chrome*), it means the browser recognizes the property, but if you try to set it, nothing happens. 17 | 18 | When choosing between prefixed/unprefixed property name, please keep in mind following: 19 | 20 | * Use unprefixed property name when it's possible to ensure compatibility in the future. 21 | * Сonsult browser docs if you need to support earlier versions (e.g., IE 7). 22 | * Some prefixed properties have slightly different syntax (e.g., `-webkit-border-radius`). Consult browser docs before using them. 23 | 24 | ## List of properties 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | 323 | 324 | 325 | 326 | 327 | 328 | 329 | 330 | 331 | 332 | 333 | 334 | 335 | 336 | 337 | 338 | 339 | 340 | 341 | 342 | 343 | 344 | 345 | 346 | 347 | 348 | 349 | 350 | 351 | 352 | 353 | 354 | 355 | 356 | 357 | 358 | 359 | 360 | 361 | 362 | 363 | 364 | 365 | 366 | 367 | 368 | 369 | 370 | 371 | 372 | 373 | 374 | 375 | 376 | 377 | 378 | 379 | 380 | 381 | 382 | 383 | 384 | 385 | 386 | 387 | 388 | 389 | 390 | 391 | 392 | 393 | 394 | 395 | 396 | 397 | 398 | 399 | 400 | 401 | 402 | 403 | 404 | 405 | 406 | 407 | 408 | 409 | 410 | 411 | 412 | 413 | 414 | 415 | 416 | 417 | 418 | 419 | 420 | 421 | 422 | 423 | 424 | 425 | 426 | 427 | 428 | 429 | 430 | 431 | 432 | 433 | 434 | 435 | 436 | 437 | 438 | 439 | 440 | 441 | 442 | 443 | 444 | 445 | 446 | 447 | 448 | 449 | 450 | 451 | 452 | 453 | 454 | 455 | 456 | 457 | 458 | 459 | 460 | 461 | 462 | 463 | 464 | 465 | 466 | 467 | 468 | 469 | 470 | 471 | 472 | 473 | 474 | 475 | 476 | 477 | 478 | 479 | 480 | 481 | 482 | 483 | 484 | 485 | 486 | 487 | 488 | 489 | 490 | 491 | 492 | 493 | 494 | 495 | 496 |
PropertyCan be used without prefix-webkit-moz-ms-o
[accelerator]IE
[align-content](http://dev.w3.org/csswg/css3-flexbox/#align-content)Fx 18+, O 12.10Chrome
[align-items](http://dev.w3.org/csswg/css3-flexbox/#align-items) Fx 18+, O 12.10+Chrome
[align-self](http://dev.w3.org/csswg/css3-flexbox/#align-self)Fx 18+, O 12.10+Chrome
[animation](http://dev.w3.org/csswg/css3-animations/#animation)Fx 16+, IE 10, O 12.10+Safari, ChromeFx 5+O 12
[animation-delay](http://dev.w3.org/csswg/css3-animations/#animation-delay)Fx 16+, IE 10, O 12.10+Safari, ChromeFx 5+O 12
[animation-direction](http://dev.w3.org/csswg/css3-animations/#animation-direction)Fx 16+, IE 10, O 12.10+Safari, ChromeFx 5+O 12
[animation-duration](http://dev.w3.org/csswg/css3-animations/#animation-duration)Fx 16+, IE 10, O 12.10+Safari, ChromeFx 5+O 12
[animation-fill-mode](http://dev.w3.org/csswg/css3-animations/#animation-fill-mode)Fx 16+, IE 10, O 12.10+Safari 5+, ChromeFx 5+O 12
[animation-iteration-count](http://dev.w3.org/csswg/css3-animations/#animation-iteration-count)Fx 16+, IE 10, O 12.10Safari, ChromeFx 5+O 12
[animation-name](http://dev.w3.org/csswg/css3-animations/#animation-name)Fx 16+, IE 10, O 12.10+Safari, ChromeFx 5+O 12
[animation-play-state](http://dev.w3.org/csswg/css3-animations/#animation-play-state)Fx 16+, IE 10, O 12.10+Safari, ChromeFx 5+O 12
[animation-timing-function](http://dev.w3.org/csswg/css3-animations/#animation-timing-function)Fx 16+, IE 10, O 12.10+Safari, ChromeFx 5+O 12
app-regionChrome
[appearance](http://css-tricks.com/almanac/properties/a/appearance/)Safari, ChromeFx
aspect-ratioChrome
[backface-visibility](http://dev.w3.org/csswg/css3-transforms/#backface-visibility-property)Fx 16+, IE 10Safari, ChromeFx 10+
[background](http://www.w3.org/TR/CSS1/#background)Safari, Chrome, Fx, IE, O
[background-attachment](http://www.w3.org/TR/CSS1/#background-attachment)Safari, Chrome, Fx, IE, O
[background-clip](http://dev.w3.org/csswg/css3-background/#the-background-clip)Chrome, Fx, IE 9+, OSafari, ChromeFx
[background-color](http://www.w3.org/TR/CSS1/#background-color)Safari, Chrome, Fx, IE, O
[background-composite](http://developer.apple.com/library/safari/documentation/appleapplications/reference/safaricssref/Articles/StandardCSSProperties.html#//apple_ref/doc/uid/TP30001266--webkit-background-composite)Safari, Chrome
[background-image](http://www.w3.org/TR/CSS1/#background-image)Safari, Chrome, Fx, IE, O
[background-inline-policy](https://developer.mozilla.org/en-US/docs/CSS/-moz-background-inline-policy)Fx
[background-origin](http://dev.w3.org/csswg/css3-background/#the-background-origin)Chrome, Fx, IE 9+, OSafari, ChromeFx
background-origin-xChrome
background-origin-yChrome
[background-position](http://www.w3.org/TR/CSS1/#background-position)Safari, Chrome, Fx, IE, O
[background-position-x](http://developer.apple.com/library/safari/documentation/appleapplications/reference/safaricssref/Articles/StandardCSSProperties.html#//apple_ref/doc/uid/TP30001266-background_position_x)Safari, ChromeIE
[background-position-y](http://developer.apple.com/library/safari/documentation/appleapplications/reference/safaricssref/Articles/StandardCSSProperties.html#//apple_ref/doc/uid/TP30001266-background_position_y)Safari, ChromeIE
[background-repeat](http://www.w3.org/TR/CSS1/#background-repeat)Safari, Chrome, Fx, IE, O
background-repeat-xChrome
background-repeat-yChrome
[background-size](http://dev.w3.org/csswg/css3-background/#the-background-size)Safari, Chrome, Fx, IE 9+, O
[behavior](https://developer.mozilla.org/en-US/docs/CSS/-moz-binding)IE
[binding]Fx
blend-modeChrome
[block-progression]IE
[border](http://www.w3.org/TR/CSS1/#border)Safari, Chrome, Fx, IE, O
border-afterChrome
border-after-colorChrome
border-after-styleChrome
border-after-widthChrome
border-beforeChrome
border-before-colorChrome
border-before-styleChrome
border-before-widthChrome
[border-bottom](http://www.w3.org/TR/CSS1/#border-bottom)Safari, Chrome, Fx, IE, O
[border-bottom-color](http://www.w3.org/TR/CSS2/box.html#border-color-properties)Safari, Chrome, Fx, IE, O
[border-bottom-colors](https://developer.mozilla.org/en-US/docs/CSS/-moz-border-bottom-colors)Fx
[border-bottom-left-radius](http://dev.w3.org/csswg/css3-background/#border-bottom-left-radius)Safari 5+, Chrome, Fx, IE 9+, O
[border-bottom-right-radius](http://dev.w3.org/csswg/css3-background/#border-bottom-right-radius)Safari 5+, Chrome, Fx, IE 9+, O
[border-bottom-style](http://www.w3.org/TR/CSS2/box.html#border-style-properties)Safari, Chrome, Fx, IE, O
[border-bottom-width](http://www.w3.org/TR/CSS2/box.html#border-width-properties)Safari, Chrome, Fx, IE, O
[border-collapse](http://www.w3.org/TR/CSS2/tables.html#borders)Safari, Chrome, Fx, IE, O
[border-color](http://www.w3.org/TR/CSS1/#border-color)Safari, Chrome, Fx, IE, O
border-endChromeFx
border-end-colorChromeFx
border-end-styleChromeFx
border-end-widthChromeFx
border-fitChrome
border-horizontal-spacingSafari, Chrome
[border-image](http://dev.w3.org/csswg/css3-background/#border-image)ChromeSafari, Chrome, Fx 15+FxO
[border-image-outset](http://dev.w3.org/csswg/css3-background/#border-image-outset)Chrome, Fx 15+
[border-image-repeat](http://dev.w3.org/csswg/css3-background/#border-image-repeat)Chrome, Fx 15+
[border-image-slice](http://dev.w3.org/csswg/css3-background/#border-image-slice)Chrome, Fx 15+
[border-image-source](http://dev.w3.org/csswg/css3-background/#border-image-source)Chrome, Fx 15+
[border-image-width](http://dev.w3.org/csswg/css3-background/#border-image-width)Chrome, Fx 13+
[border-left](http://www.w3.org/TR/CSS1/#border-left)Safari, Chrome, Fx, IE, O
[border-left-color](http://www.w3.org/TR/CSS2/box.html#propdef-border-left-color)Safari, Chrome, Fx, IE, O
[border-left-colors](https://developer.mozilla.org/en-US/docs/CSS/-moz-border-left-colors)Fx
[border-left-style](http://www.w3.org/TR/CSS2/box.html#border-style-properties)Safari, Chrome, Fx, IE, O
[border-left-width](http://www.w3.org/TR/CSS1/#border-left-width)Safari, Chrome, Fx, IE, O
[border-radius](http://dev.w3.org/csswg/css3-background/#border-radius)Safari 5+, Chrome, Fx, IE 9+, OSafari, O 12.10+
[border-radius-bottomleft](http://dev.w3.org/csswg/css3-background/#border-bottom-left-radius)Fx 12-
[border-radius-bottomright](http://dev.w3.org/csswg/css3-background/#border-bottom-right-radius)Fx 12-
[border-radius-topleft](http://dev.w3.org/csswg/css3-background/#the-border-radius)Fx 12-
[border-radius-topright](http://dev.w3.org/csswg/css3-background/#the-border-radius)Fx 12-
[border-right](http://dev.w3.org/csswg/css3-background/#border-radius)Safari, Chrome, Fx, IE, O
[border-right-color](http://www.w3.org/TR/CSS2/box.html#border-color-properties)Safari, Chrome, Fx, IE, O
[border-right-colors](https://developer.mozilla.org/en-US/docs/CSS/-moz-border-right-colors)Fx
[border-right-style](http://www.w3.org/TR/CSS2/box.html#border-style-properties)Safari, Chrome, Fx, IE, O
[border-right-width](http://dev.w3.org/csswg/css3-background/#the-border-width)Safari, Chrome, Fx, IE, O
[border-spacing](http://www.w3.org/TR/CSS2/tables.html#separated-borders)Safari, Chrome, Fx, IE, O
border-startChromeFx
border-start-colorChromeFx
border-start-styleChromeFx
border-start-widthChromeFx
[border-style](http://dev.w3.org/csswg/css3-background/#border-style)Safari, Chrome, Fx, IE
[border-top](http://dev.w3.org/csswg/css3-background/#border-top)Safari, Chrome, Fx, IE, O
[border-top-color](http://dev.w3.org/csswg/css3-background/#border-top-color)Safari, Chrome, Fx, IE, O
[border-top-colors](https://developer.mozilla.org/en-US/docs/CSS/-moz-border-top-colors)Fx
[border-top-left-radius](http://dev.w3.org/csswg/css3-background/#the-border-radius)Safari 5+, Chrome, Fx, IE 9+, OSafari, Chrome, O
[border-top-right-radius](http://dev.w3.org/csswg/css3-background/#the-border-radius)Safari 5+, Chrome, Fx, IE 9+, OSafari, O
[border-top-style](http://dev.w3.org/csswg/css3-background/#the-border-style)Safari, Chrome, Fx, IE, O
[border-top-width](http://dev.w3.org/csswg/css3-background/#the-border-width)Safari, Chrome, Fx, IE, O
border-vertical-spacingSafari, Chrome
[border-width](http://dev.w3.org/csswg/css3-background/#the-border-width)Safari, Chrome, Fx, IE, O
[bottom](http://www.w3.org/TR/CSS2/visuren.html#propdef-bottom)Safari, Chrome, Fx, IE, O
[box-align](https://developer.mozilla.org/en-US/docs/CSS/box-align)Safari, ChromeFx
[box-decoration-break](http://www.w3.org/TR/css3-background/#the-box-decoration-break)OChrome
[box-direction](https://developer.mozilla.org/en-US/docs/CSS/box-direction)Safari, ChromeFx
[box-flex](https://developer.mozilla.org/en-US/docs/CSS/-moz-box-flex)Safari, ChromeFx
box-flex-groupSafari, Chrome
[box-float-edge](https://developer.mozilla.org/en-US/docs/CSS/-moz-float-edge)Fx
[box-force-broken-image-icon](https://developer.mozilla.org/en-US/docs/CSS/-moz-force-broken-image-icon)Fx
box-linesSafari, Chrome
[box-ordinal-group](https://developer.mozilla.org/en-US/docs/CSS/-moz-box-ordinal-group)Safari, ChromeFx
[box-orient](https://developer.mozilla.org/en-US/docs/CSS/-moz-box-orient)Safari, ChromeFx
[box-pack](https://developer.mozilla.org/en-US/docs/CSS/-moz-box-pack)Safari, ChromeFx
[box-reflect](http://developer.apple.com/library/safari/documentation/appleapplications/reference/safaricssref/Articles/StandardCSSProperties.html#//apple_ref/doc/uid/TP30001266-SW16)Safari, Chrome
[box-shadow](http://dev.w3.org/csswg/css3-background/#box-shadow)Safari 5.1+, Chrome, Fx, IE 9+, OSafari, O
[box-sizing](http://dev.w3.org/csswg/css3-ui/#box-sizing)Safari 5.1+, Chrome, IE, OSafariFx
[break-after](http://dev.w3.org/csswg/css3-break/#break-after)IE 10, O
[break-before](http://dev.w3.org/csswg/css3-break/#break-before)IE 10, O
[break-inside](http://dev.w3.org/csswg/css3-break/#break-inside)IE 10, O
[caption-side](http://www.w3.org/TR/CSS2/tables.html#caption-position)Safari, Chrome, Fx, IE, O
[clear](http://www.w3.org/TR/CSS1/#clear)Safari, Chrome, Fx, IE, O
[clip](http://www.w3.org/TR/CSS2/visufx.html#clipping)Safari, Chrome, Fx, IE, O
[clip-path](http://www.w3.org/TR/SVG11/masking.html#ClipPathProperty)Fx
[color](http://www.w3.org/TR/CSS1/#color)Safari, Chrome, Fx, IE, O
color-correctionChrome
column-axisChrome
[column-break-after](http://dev.w3.org/csswg/css3-multicol/#break-after)Safari, Chrome
[column-break-before](http://dev.w3.org/csswg/css3-multicol/#break-before)Safari, Chrome
[column-break-inside](http://dev.w3.org/csswg/css3-multicol/#break-inside)Safari, Chrome
[column-count](http://dev.w3.org/csswg/css3-multicol/#column-count)IE 10, OSafari, ChromeFx
[column-fill](http://dev.w3.org/csswg/css3-multicol/#column-fill)IE 10, OFx 13+
[column-gap](http://dev.w3.org/csswg/css3-multicol/#column-gap)IE 10, OSafari, ChromeFx
column-progressionChrome
[column-rule](http://dev.w3.org/csswg/css3-multicol/#column-rule)IE 10, OSafari, ChromeFx
[column-rule-color](http://dev.w3.org/csswg/css3-multicol/#crc)IE 10, OSafari, ChromeFx
[column-rule-style](http://dev.w3.org/csswg/css3-multicol/#crs)IE 10, OSafari, ChromeFx
[column-rule-width](http://dev.w3.org/csswg/css3-multicol/#crw)IE 10, OSafari, ChromeFx
[column-span](http://dev.w3.org/csswg/css3-multicol/#column-span0)IE 10, OSafari, Chrome
[column-width](http://dev.w3.org/csswg/css3-multicol/#cw)IE 10, OSafari, ChromeFx
[columns](http://dev.w3.org/csswg/css3-multicol/#columns)IE 10, OSafari, ChromeFx 9+
[content](http://www.w3.org/TR/CSS2/generate.html#content)Safari, Chrome, Fx, IE, O
[content-zoom-chaining]IE 10
[content-zoom-limit]IE 10
[content-zoom-limit-max]IE 10
[content-zoom-limit-min]IE 10
[content-zoom-snap]IE 10
[content-zoom-snap-points]IE 10
[content-zoom-snap-type]IE 10
[content-zooming]IE 10
[counter-increment](http://www.w3.org/TR/CSS2/generate.html#propdef-counter-increment)Safari, Chrome, Fx, IE, O
[counter-reset](http://www.w3.org/TR/CSS2/generate.html#propdef-counter-reset)Safari, Chrome, Fx, IE, O
[cursor](http://dev.w3.org/csswg/css3-ui/#cursor)Safari, Chrome, Fx, IE, O
dashboard-regionSafari, Chrome
device-pixel-ratioO
[direction](http://www.w3.org/TR/CSS2/visuren.html#direction)Safari, Chrome, Fx, IE, O
[display](http://dev.w3.org/csswg/css3-box/#display)Safari, Chrome, Fx, IE, O
[empty-cells](http://www.w3.org/TR/CSS2/tables.html#empty-cells)Safari, Chrome, Fx, IE, O
[filter](http://dvcs.w3.org/hg/FXTF/raw-file/tip/filters/index.html#FilterProperty)ChromeIE
[flex](http://dev.w3.org/csswg/css3-flexbox/#flex)Fx 18+, O 12.10+ChromeIE 10
[flex-align]IE 10
[flex-basis](http://dev.w3.org/csswg/css3-flexbox/#flex-basis)Fx 18+, O 12.10+Chrome
[flex-direction](http://dev.w3.org/csswg/css3-flexbox/#flex-direction)Fx 18+, O 12.10+ChromeIE 10
[flex-flow](http://dev.w3.org/csswg/css3-flexbox/#flex-flow)Fx 18+, O 12.10+Chrome
[flex-grow](http://dev.w3.org/csswg/css3-flexbox/#flex-grow)Fx 18+, O 12.10+Chrome
[flex-order]IE 10
[flex-pack]IE 10
[flex-shrink](http://dev.w3.org/csswg/css3-flexbox/#flex-shrink)Fx 18+, O 12.10+Chrome
[flex-wrap](http://dev.w3.org/csswg/css3-flexbox/#flex-wrap)Fx 18+, O 12.10+ChromeIE 10
[float](http://www.w3.org/TR/CSS1/#float)Safari, Chrome, Fx, IE, O
flow-fromChromeIE 10
flow-introChromeIE 10
[font](http://dev.w3.org/csswg/css3-fonts/#font)Safari, Chrome, Fx, IE, O
[font-family](http://dev.w3.org/csswg/css3-fonts/#font-family-prop)Safari, Chrome, Fx, IE, O
[font-feature-settings](http://dev.w3.org/csswg/css3-fonts/#propdef-font-feature-settings)IE 10ChromeFx
font-kerningChrome
font-language-overrideFx
[font-size](http://dev.w3.org/csswg/css3-fonts/#propdef-font-size)Safari, Chrome, Fx, IE, O
[font-size-adjust](http://dev.w3.org/csswg/css3-fonts/#propdef-font-size-adjust)Fx, IE 10
font-size-deltaChrome
font-smoothingChrome
[font-stretch](http://dev.w3.org/csswg/css3-fonts/#propdef-font-stretch)Chrome, Fx 9+, IE 9+
[font-style](http://dev.w3.org/csswg/css3-fonts/#font-style-prop)Safari, Chrome, Fx, IE, O
[font-variant](http://dev.w3.org/csswg/css3-fonts/#propdef-font-variant)Safari, Chrome, Fx, IE, O
font-variant-ligaturesChrome
[font-weight](http://dev.w3.org/csswg/css3-fonts/#font-weight-prop)Safari, Chrome, Fx, IE, O
[grid-column]ChromeIE 10
[grid-column-align]IE 10
[grid-column-span]IE 10
[grid-columns]ChromeIE 10
[grid-row]ChromeIE 10
[grid-row-align]IE 10
[grid-row-span]IE 10
[grid-rows]ChromeIE 10
[height](http://dev.w3.org/csswg/css3-box/#the-width-and-height-properties)Safari, Chrome, Fx, IE, O
[high-contrast-adjust]IE 10
highlightChrome
hyphenate-characterChrome
hyphenate-limit-afterChrome
hyphenate-limit-beforeChrome
[hyphenate-limit-chars]IE 10
[hyphenate-limit-lines]ChromeIE 10
[hyphenate-limit-zone]IE 10
[hyphens](http://dev.w3.org/csswg/css3-text/#hyphens)Safari 5.1+, ChromeFx 6+IE 10
icon
[image-region](https://developer.mozilla.org/en-US/docs/CSS/-moz-image-region)Fx
[image-rendering](http://dev.w3.org/csswg/css4-images/#image-rendering)Safari 5+, Chrome, Fx, O
image-resolutionChrome
[image-orientation](http://dev.w3.org/csswg/css3-images/#image-orientation)Chrome
[ime-mode](http://dev.w3.org/csswg/css3-ui/#input-method-editor)Fx, IE
[interpolation-mode]IE 10
[justify-content](http://dev.w3.org/csswg/css3-flexbox/#justify-content)Fx 18+, O 12.10+Chrome
[layout-flow]IE 10
[layout-grid]IE 10
[layout-grid-char]IE 10
[layout-grid-line]IE 10
[layout-grid-mode]IE 10
[layout-grid-type]IE 10
[left](http://www.w3.org/TR/CSS2/visuren.html#propdef-left)Safari, Chrome, Fx, IE, O
[letter-spacing](http://dev.w3.org/csswg/css3-text/#letter-spacing)Safari, Chrome, Fx, IE, O
line-alignChrome
line-box-containChrome
line-breakSafari, ChromeIE
line-clampChrome
line-gridChrome
[line-height](http://www.w3.org/TR/CSS1/#line-height)Safari, Chrome, Fx, IE, O
line-snapChrome
[list-style](http://dev.w3.org/csswg/css3-lists/#list-style)Safari, Chrome, Fx, IE, O
[list-style-image](http://dev.w3.org/csswg/css3-lists/#list-style-image)Safari, Chrome, Fx, IE, O
[list-style-position](http://dev.w3.org/csswg/css3-lists/#list-style-position)Safari, Chrome, Fx, IE, O
[list-style-type](http://dev.w3.org/csswg/css3-lists/#list-style-type)Safari, Chrome, Fx, IE, O
localeChrome
logical-heightChrome
logical-widthChrome
[margin](http://www.w3.org/TR/CSS1/#margin)Safari, Chrome, Fx, IE, O
margin-afterChrome
margin-after-collapseChrome
margin-beforeChrome
margin-before-collapseChrome
[margin-bottom](http://www.w3.org/TR/CSS1/#margin-bottom)Safari, Chrome, Fx, IE, O
[margin-bottom-collapse](http://developer.apple.com/library/safari/documentation/appleapplications/reference/safaricssref/Articles/StandardCSSProperties.html#//apple_ref/doc/uid/TP30001266--webkit-margin-bottom-collapse)Safari, Chrome
[margin-collapse](http://developer.apple.com/library/safari/documentation/appleapplications/reference/safaricssref/Articles/StandardCSSProperties.html#//apple_ref/doc/uid/TP30001266--webkit-margin-collapse)Safari, Chrome
[margin-end](https://developer.mozilla.org/en-US/docs/CSS/-moz-margin-end)Safari, ChromeFx
[margin-left](http://www.w3.org/TR/CSS1/#margin-left)Safari, Chrome, Fx, IE, O
[margin-right](http://www.w3.org/TR/CSS1/#margin-right)Safari, Chrome, Fx, IE, O
[margin-start](http://developer.apple.com/library/safari/documentation/appleapplications/reference/safaricssref/Articles/StandardCSSProperties.html#//apple_ref/doc/uid/TP30001266--webkit-margin-start)Safari, ChromeFx
[margin-top](http://www.w3.org/TR/CSS1/#margin-top)Safari, Chrome, Fx, IE, O
[margin-top-collapse](http://developer.apple.com/library/safari/documentation/appleapplications/reference/safaricssref/Articles/StandardCSSProperties.html#//apple_ref/doc/uid/TP30001266--webkit-margin-top-collapse)Safari, Chrome
[marks](http://dev.w3.org/csswg/css3-gcpm/#marks)
marqueeSafari, Chrome
marquee-directionSafari, Chrome
marquee-incrementSafari, Chrome
marquee-repetitionSafari, Chrome
marquee-play-count
marquee-speedSafari, Chrome
marquee-styleSafari, Chrome
[mask](http://developer.apple.com/library/safari/documentation/appleapplications/reference/safaricssref/Articles/StandardCSSProperties.html#//apple_ref/doc/uid/TP30001266-SW17)Safari, Chrome
[mask-attachment](http://developer.apple.com/library/safari/documentation/appleapplications/reference/safaricssref/Articles/StandardCSSProperties.html#//apple_ref/doc/uid/TP30001266-SW3)Safari, Chrome
[mask-box-image](http://developer.apple.com/library/safari/documentation/appleapplications/reference/safaricssref/Articles/StandardCSSProperties.html#//apple_ref/doc/uid/TP30001266-SW14)Safari, Chrome
mask-box-image-outsetChrome
mask-box-image-repeatChrome
mask-box-image-sliceChrome
mask-box-image-sourceChrome
mask-box-image-widthChrome
[mask-clip](http://developer.apple.com/library/safari/documentation/appleapplications/reference/safaricssref/Articles/StandardCSSProperties.html#//apple_ref/doc/uid/TP30001266-SW4)Safari, Chrome
[mask-composite](http://developer.apple.com/library/safari/documentation/appleapplications/reference/safaricssref/Articles/StandardCSSProperties.html#//apple_ref/doc/uid/TP30001266-SW13)Safari, Chrome
[mask-image](http://developer.apple.com/library/safari/documentation/appleapplications/reference/safaricssref/Articles/StandardCSSProperties.html#//apple_ref/doc/uid/TP30001266-SW7)Safari, Chrome
[mask-origin](http://developer.apple.com/library/safari/documentation/appleapplications/reference/safaricssref/Articles/StandardCSSProperties.html#//apple_ref/doc/uid/TP30001266-SW6)Safari, Chrome
[mask-position](http://developer.apple.com/library/safari/documentation/appleapplications/reference/safaricssref/Articles/StandardCSSProperties.html#//apple_ref/doc/uid/TP30001266-SW18)Safari, Chrome
[mask-position-x](http://developer.apple.com/library/safari/documentation/appleapplications/reference/safaricssref/Articles/StandardCSSProperties.html#//apple_ref/doc/uid/TP30001266-SW19)Safari, Chrome
[mask-position-y](http://developer.apple.com/library/safari/documentation/appleapplications/reference/safaricssref/Articles/StandardCSSProperties.html#//apple_ref/doc/uid/TP30001266-SW20)Safari, Chrome
[mask-repeat](http://developer.apple.com/library/safari/documentation/appleapplications/reference/safaricssref/Articles/StandardCSSProperties.html#//apple_ref/doc/uid/TP30001266-SW8)Safari, Chrome
mask-repeat-xChrome
mask-repeat-yChrome
[mask-size](http://developer.apple.com/library/safari/documentation/appleapplications/reference/safaricssref/Articles/StandardCSSProperties.html#//apple_ref/doc/uid/TP30001266-SW21)Safari, Chrome
match-nearest-mail-blockquote-colorChrome
[max-height](http://www.w3.org/TR/CSS2/visudet.html#propdef-max-height)Safari, Chrome, Fx, IE, O
max-logical-heightChrome
max-logical-widthChrome
[max-width](http://www.w3.org/TR/CSS2/visudet.html#propdef-max-width)Safari, Chrome, Fx, IE, O
max-zoomChrome
[min-height](http://www.w3.org/TR/CSS2/visudet.html#propdef-min-height)Safari, Chrome, Fx, IE, O
min-logical-heightChrome
min-logical-widthChrome
[min-width](http://www.w3.org/TR/CSS2/visudet.html#propdef-min-width)Safari, Chrome, Fx, IE, O
min-zoomChrome
[nav-down](http://dev.w3.org/csswg/css3-ui/#nav-down)O
[nav-index](http://dev.w3.org/csswg/css3-ui/#nav-index0)O
[nav-left](http://dev.w3.org/csswg/css3-ui/#nav-left)O
[nav-right](http://dev.w3.org/csswg/css3-ui/#nav-right)O
[nav-up](http://dev.w3.org/csswg/css3-ui/#nav-up)O
nbsp-modeSafari, Chrome
[object-fit](http://dev.w3.org/csswg/css3-images/#object-fit)O
[object-position](http://dev.w3.org/csswg/css3-images/#object-position)O
[opacity](http://dev.w3.org/csswg/css3-color/#opacity)Safari, Chrome, Fx, IE 9+, O
[order](http://dev.w3.org/csswg/css3-flexbox/#order-property)Fx 18+, O 12.10+Chrome
[orient](https://developer.mozilla.org/en-US/docs/CSS/-moz-orient)Fx
orientationChrome
[orphans](http://dev.w3.org/csswg/css3-page/#orphans)Safari, Chrome, Fx, IE, O
[outline](http://dev.w3.org/csswg/css3-ui/#outline)Safari, Chrome, Fx, IE, O
[outline-color](http://dev.w3.org/csswg/css3-ui/#outline-color)Safari, Chrome, Fx, IE, O
[outline-offset](http://dev.w3.org/csswg/css3-ui/#outline-offset)Safari, Chrome, Fx, O
[outline-radius](https://developer.mozilla.org/en-US/docs/CSS/-moz-outline-radius)Fx
[outline-radius-bottomleft](https://developer.mozilla.org/en-US/docs/CSS/-moz-outline-radius-bottomleft)Fx
[outline-radius-bottomright](https://developer.mozilla.org/en-US/docs/CSS/-moz-outline-radius-bottomright)Fx
[outline-radius-topleft](https://developer.mozilla.org/en-US/docs/CSS/-moz-outline-radius-topleft)Fx
[outline-radius-topright](https://developer.mozilla.org/en-US/docs/CSS/-moz-outline-radius-topright)Fx
[outline-style](http://dev.w3.org/csswg/css3-ui/#outline-style)Safari, Chrome, Fx, IE, O
[outline-width](http://dev.w3.org/csswg/css3-ui/#outline-width)Safari, Chrome, Fx, IE, O
[overflow](http://dev.w3.org/csswg/css3-box/#overflow1)Safari, Chrome, Fx, IE, O
overflow-scrollingSafari iOS, Chrome
[overflow-style]IE 10
[overflow-wrap](http://www.w3.org/TR/css3-text/#overflow-wrap0)Chrome
[overflow-x](http://dev.w3.org/csswg/css3-box/#overflow-x)Safari, Chrome, Fx, IE, OIE
[overflow-y](http://dev.w3.org/csswg/css3-box/#overflow-y)Safari, Chrome, Fx, IE, OIE
[padding](http://dev.w3.org/csswg/css3-box/#the-padding)Safari, Chrome, Fx, IE, O
padding-afterChrome
padding-beforeChrome
[padding-bottom](http://dev.w3.org/csswg/css3-box/#the-padding)Safari, Chrome, Fx, IE, O
[padding-end](https://developer.mozilla.org/en-US/docs/CSS/-moz-padding-end)Safari, ChromeFx
[padding-left](http://dev.w3.org/csswg/css3-box/#the-padding)Safari, Chrome, Fx, IE, O
[padding-right](http://dev.w3.org/csswg/css3-box/#the-padding)Safari, Chrome, Fx, IE, O
[padding-start](http://developer.apple.com/library/safari/documentation/appleapplications/reference/safaricssref/Articles/StandardCSSProperties.html#//apple_ref/doc/uid/TP30001266--webkit-padding-start)Safari, ChromeFx
[padding-top](http://dev.w3.org/csswg/css3-box/#the-padding)Safari, Chrome, Fx, IE, O
pageChrome
[page-break-after](http://dev.w3.org/csswg/css3-page/#page-break-after)Safari, Chrome, Fx, IE, O
[page-break-before](http://dev.w3.org/csswg/css3-page/#page-break-before)Safari, Chrome, Fx, IE, O
[page-break-inside](http://dev.w3.org/csswg/css3-page/#page-break-inside)Safari, Chrome, Fx 19+, IE, O
[perspective](http://dev.w3.org/csswg/css3-transforms/#perspective)Fx 16+, IE 10Safari, ChromeFx 10+
[perspective-origin](http://dev.w3.org/csswg/css3-transforms/#perspective-origin)Fx 16+, IE 10Safari, ChromeFx 10+
perspective-origin-xChrome
perspective-origin-yChrome
[pointer-events](http://www.w3.org/TR/SVG11/interact.html#PointerEventsProperty)Safari, Chrome, Fx
[position](http://www.w3.org/TR/CSS2/visuren.html#propdef-position)Safari, Chrome, Fx, IE, O
print-color-adjustChrome
[progress-appearance]IE 10
[quotes](http://www.w3.org/TR/CSS2/generate.html#quotes)Chrome, Fx, IE, O
region-overflowChrome
[region-break-after](http://dev.w3.org/csswg/css3-regions/#break-after)Chrome
[region-break-before](http://dev.w3.org/csswg/css3-regions/#break-before)Chrome
[region-break-inside](http://dev.w3.org/csswg/css3-regions/#break-inside)Chrome
[resize](http://dev.w3.org/csswg/css3-ui/#resize)Safari, Chrome, Fx
[right](http://www.w3.org/TR/CSS2/visuren.html#propdef-right)Safari, Chrome, Fx, IE, O
rtl-orderingSafari, Chrome
[ruby-align]IE
[ruby-overhang]IE
[ruby-position]IE
script-levelFx
script-min-sizeFx
script-size-multiplierFx
[scrollbar-3dlight-color]IE 10
[scroll-chaining]IE 10
[scroll-limit]IE 10
[scroll-limit-x-max]IE 10
[scroll-limit-x-min]IE 10
[scroll-limit-y-max]IE 10
[scroll-limit-y-min]IE 10
[scroll-rails]IE 10
[scroll-snap-points-x]IE 10
[scroll-snap-points-y]IE 10
[scroll-snap-type]IE 10
[scroll-snap-x]IE 10
[scroll-snap-y]IE 10
[scroll-translation]IE 10
[scrollbar-arrow-color]IE 10
[scrollbar-base-color]IE 10
[scrollbar-darkshadow-color]IE 10
[scrollbar-face-color]IE 10
[scrollbar-highlight-color]IE 10
[scrollbar-shadow-color]IE 10
[scrollbar-track-color]IE 10
shape-insideChrome
shape-outsideChrome
sizeChrome
[src](http://developer.apple.com/library/safari/documentation/appleapplications/reference/safaricssref/Articles/StandardCSSProperties.html#//apple_ref/doc/uid/TP30001266-src)Safari, Chrome, Fx, IE, O
speakChrome
[stack-sizing](https://developer.mozilla.org/en-US/docs/CSS/-moz-stack-sizing)Fx
svg-shadowChrome
[tab-size](http://dev.w3.org/csswg/css3-text/#tab-size)ChromeFxO
table-baselineO
[table-layout](http://www.w3.org/TR/CSS2/tables.html#width-layout)Safari, Chrome, Fx, IE, O
tap-highlight-colorSafari iOS, Chrome
[text-align](http://dev.w3.org/csswg/css3-text/#text-align)Safari, Chrome, Fx, IE, O
[text-align-last](http://dev.w3.org/csswg/css3-text/#text-align-last)Fx 12+IE 10
[text-autospace]IE
[text-blink](https://developer.mozilla.org/en-US/docs/CSS/-moz-text-blink)Fx
text-combineChrome
[text-decoration](http://dev.w3.org/csswg/css3-text/#text-decoration)Safari, Chrome, Fx, IE, O
[text-decoration-color](http://dev.w3.org/csswg/css3-text/#text-decoration-color)Fx 6+
[text-decoration-line](http://dev.w3.org/csswg/css3-text/#text-decoration-line)ChromeFx 6+
text-decoration-skip
[text-decoration-style](http://dev.w3.org/csswg/css3-text/#text-decoration-style)ChromeFx 6+
text-decorations-in-effectChrome
text-emphasisChrome
text-emphasis-colorChrome
text-emphasis-positionChrome
text-emphasis-styleChrome
text-fill-colorSafari, Chrome
[text-indent](http://dev.w3.org/csswg/css3-text/#text-indent)Safari, Chrome, Fx, IE, O
[text-justify]IE 10
[text-kashida-space]IE 10
text-line-through*Chrome*
text-line-through-color*Chrome*
text-line-through-mode*Chrome*
text-line-through-style*Chrome*
text-line-through-width*Chrome*
text-orientationChrome
[text-overflow](http://dev.w3.org/csswg/css3-ui/#text-overflow)Safari, Chrome, OIE 10
text-overflow-ellipsisO
text-overflow-modeO
text-overlineChrome
text-overline-colorChrome
text-overline-modeChrome
text-overline-styleChrome
text-overline-widthChrome
[text-rendering](http://www.w3.org/TR/SVG11/painting.html#TextRenderingProperty)Safari 5+, Chrome, Fx
text-securitySafari, Chrome
[text-shadow](http://dev.w3.org/csswg/css3-text/#text-shadow)Safari, Chrome, Fx, IE 10, O
text-size-adjustSafari iOS, Chrome
text-strokeSafari, Chrome
text-stroke-colorSafari, Chrome
text-stroke-widthSafari, Chrome
[text-transform](http://dev.w3.org/csswg/css3-text/#text-transform)Safari, Chrome, Fx, IE, O
text-underlineChrome
text-underline-colorChrome
text-underline-modeChrome
[text-underline-position]IE 10
text-underline-styleChrome
text-underline-widthChrome
[top](http://www.w3.org/TR/CSS2/visuren.html#propdef-top)Safari, Chrome, Fx, IE, O
[touch-action]IE 10
touch-calloutSafari iOS
[transform](http://dev.w3.org/csswg/css3-transforms/#transform)Fx 16+, IE 10, O 12.10+Safari, Chrome, OFxIE 9O
[transform-origin](http://dev.w3.org/csswg/css3-transforms/#transform-origin)Fx 16, IE 10, O 12.10Safari, Chrome, OFxIE 9O
[transform-origin-x](http://developer.apple.com/library/safari/documentation/appleapplications/reference/safaricssref/Articles/StandardCSSProperties.html#//apple_ref/doc/uid/TP30001266-_webkit_transform_origin_x)Safari, Chrome
[transform-origin-y](http://developer.apple.com/library/safari/documentation/appleapplications/reference/safaricssref/Articles/StandardCSSProperties.html#//apple_ref/doc/uid/TP30001266-_webkit_transform_origin_y)Safari, Chrome
[transform-origin-z](http://developer.apple.com/library/safari/documentation/appleapplications/reference/safaricssref/Articles/StandardCSSProperties.html#//apple_ref/doc/uid/TP30001266-SW22)Safari, Chrome
[transform-style](http://dev.w3.org/csswg/css3-transforms/#transform-style)Fx 16+, IE 10Safari, ChromeFx 10+
[transition](http://dev.w3.org/csswg/css3-transitions/#transition)Fx 16+, IE 10, O 12.10+Safari, Chrome, OFxO
[transition-delay](http://dev.w3.org/csswg/css3-transitions/#transition-delay)Fx 16+, IE 10, O 12.10+Safari, Chrome, OFxO
[transition-duration](http://dev.w3.org/csswg/css3-transitions/#transition-duration)Fx 16+, IE 10, O 12.10+Safari, Chrome, OFxO
[transition-property](http://dev.w3.org/csswg/css3-transitions/#transition-property)Fx 16+, IE 10, O 12.10Safari, Chrome, OFxO
[transition-timing-function](http://dev.w3.org/csswg/css3-transitions/#transition-timing-function)Fx 16+, IE 10, O 12.10+Safari, Chrome, OFxO
[unicode-bidi](http://dev.w3.org/csswg/css3-writing-modes/#unicode-bidi)Safari, Chrome, Fx, IE, OFx 10+
[unicode-range](http://developer.apple.com/library/safari/documentation/appleapplications/reference/safaricssref/Articles/StandardCSSProperties.html#//apple_ref/doc/uid/TP30001266-unicode_range)Safari, Chrome
user-dragSafari, Chrome
[user-focus](https://developer.mozilla.org/en-US/docs/CSS/-moz-user-focus)Fx
[user-input](https://developer.mozilla.org/en-US/docs/CSS/-moz-user-input)Fx
[user-modify](https://developer.mozilla.org/en-US/docs/CSS/-moz-user-modify)Safari, ChromeFx
[user-select]Safari, ChromeFxIE 10
user-zoomChrome
[vertical-align](http://www.w3.org/TR/CSS1/#vertical-align)Safari, Chrome, Fx, IE, O
[visibility](http://dev.w3.org/csswg/css3-box/#the-visibility-property)Safari, Chrome, Fx, IE, O
[white-space](http://dev.w3.org/csswg/css3-text/#white-space0)Safari, Chrome, Fx, IE, O
[widows](http://dev.w3.org/csswg/css3-break/#widows-orphans)Safari, Chrome, IE, O
[width](http://dev.w3.org/csswg/css3-box/#the-width-and-height-properties)Safari, Chrome, Fx, IE, O
[window-shadow](https://developer.mozilla.org/en-US/docs/CSS/-moz-window-shadow)Fx
[word-break](http://dev.w3.org/csswg/css3-text/#word-break)Safari, Chrome, Fx 15+, IE
[word-spacing](http://dev.w3.org/csswg/css3-text/#word-spacing)Safari, Chrome, Fx, IE, O
[word-wrap](http://dev.w3.org/csswg/css3-text/#overflow-wrap)Safari, Chrome, Fx, IE, O
wrapChrome
[wrap-flow]ChromeIE 10
[wrap-margin]ChromeIE 10
wrap-paddingChrome
[wrap-through]ChromeIE 10
[writing-mode]ChromeIE
[z-index](http://www.w3.org/TR/CSS2/visuren.html#z-index)Safari, Chrome, Fx, IE, O
zoomSafari, ChromeIE
497 | 498 | [accelerator]: http://msdn.microsoft.com/en-us/library/ie/ms530713(v=vs.85).aspx 499 | [binding]: http://msdn.microsoft.com/en-us/library/ie/ms530723(v=vs.85).aspx 500 | [block-progression]: http://msdn.microsoft.com/en-us/library/ie/dd229917(v=vs.85).aspx 501 | [content-zoom-chaining]: http://msdn.microsoft.com/en-us/library/ie/hh771889(v=vs.85).aspx 502 | [content-zoom-limit]: http://msdn.microsoft.com/en-us/library/ie/jj127330(v=vs.85).aspx 503 | [content-zoom-limit-max]: http://msdn.microsoft.com/en-us/library/ie/jj127331(v=vs.85).aspx 504 | [content-zoom-limit-min]: http://msdn.microsoft.com/en-us/library/ie/jj127332(v=vs.85).aspx 505 | [content-zoom-snap]: http://msdn.microsoft.com/en-us/library/ie/hh771893(v=vs.85).aspx 506 | [content-zoom-snap-points]: http://msdn.microsoft.com/en-us/library/ie/hh771895(v=vs.85).aspx 507 | [content-zoom-snap-type]: http://msdn.microsoft.com/en-us/library/ie/hh771896(v=vs.85).aspx 508 | [content-zooming]: http://msdn.microsoft.com/en-us/library/ie/hh771891(v=vs.85).aspx 509 | [flex-align]: http://msdn.microsoft.com/en-us/library/ie/jj127298(v=vs.85).aspx 510 | [flex-order]: http://msdn.microsoft.com/en-us/library/ie/jj127303(v=vs.85).aspx 511 | [flex-pack]: http://msdn.microsoft.com/en-us/library/ie/jj127304(v=vs.85).aspx 512 | [grid-column]: http://msdn.microsoft.com/en-us/library/ie/hh772242(v=vs.85).aspx 513 | [grid-column-align]: http://msdn.microsoft.com/en-us/library/ie/hh772245(v=vs.85).aspx 514 | [grid-column-span]: http://msdn.microsoft.com/en-us/library/ie/hh772248(v=vs.85).aspx 515 | [grid-columns]: http://msdn.microsoft.com/en-us/library/ie/hh772246(v=vs.85).aspx 516 | [grid-row]: http://msdn.microsoft.com/en-us/library/ie/hh772254(v=vs.85).aspx 517 | [grid-row-align]: http://msdn.microsoft.com/en-us/library/ie/hh772256(v=vs.85).aspx 518 | [grid-row-span]: http://msdn.microsoft.com/en-us/library/ie/hh772260(v=vs.85).aspx 519 | [grid-rows]: http://msdn.microsoft.com/en-us/library/ie/hh772258(v=vs.85).aspx 520 | [high-contrast-adjust]: http://msdn.microsoft.com/en-us/library/ie/hh771863(v=vs.85).aspx 521 | [hyphenate-limit-chars]: http://msdn.microsoft.com/en-us/library/ie/hh771865(v=vs.85).aspx 522 | [hyphenate-limit-lines]: http://msdn.microsoft.com/en-us/library/ie/hh771867(v=vs.85).aspx 523 | [hyphenate-limit-zone]: http://msdn.microsoft.com/en-us/library/ie/hh771869(v=vs.85).aspx 524 | [interpolation-mode]: http://msdn.microsoft.com/en-us/library/ie/ms530822(v=vs.85).aspx 525 | [layout-flow]: http://msdn.microsoft.com/en-us/library/ie/ms530770(v=vs.85).aspx 526 | [layout-grid]: http://msdn.microsoft.com/en-us/library/ie/ms530771(v=vs.85).aspx 527 | [layout-grid-char]: http://msdn.microsoft.com/en-us/library/ie/ms530772(v=vs.85).aspx 528 | [layout-grid-line]: http://msdn.microsoft.com/en-us/library/ie/ms530773(v=vs.85).aspx 529 | [layout-grid-mode]: http://msdn.microsoft.com/en-us/library/ie/ms530774(v=vs.85).aspx 530 | [layout-grid-type]: http://msdn.microsoft.com/en-us/library/ie/ms530775(v=vs.85).aspx 531 | [overflow-style]: http://msdn.microsoft.com/en-us/library/ie/hh771902(v=vs.85).aspx 532 | [progress-appearance]: http://msdn.microsoft.com/en-us/library/ie/hh781491(v=vs.85).aspx 533 | [ruby-align]: http://msdn.microsoft.com/en-us/library/ie/ms531150(v=vs.85).aspx 534 | [ruby-overhang]: http://msdn.microsoft.com/en-us/library/ie/ms531151(v=vs.85).aspx 535 | [ruby-position]: http://msdn.microsoft.com/en-us/library/ie/ms531152(v=vs.85).aspx 536 | [scrollbar-3dlight-color]: http://msdn.microsoft.com/en-us/library/ie/ms531153(v=vs.85).aspx 537 | [scroll-chaining]: http://msdn.microsoft.com/en-us/library/ie/hh772034(v=vs.85).aspx 538 | [scroll-limit]: http://msdn.microsoft.com/en-us/library/ie/jj127336(v=vs.85).aspx 539 | [scroll-limit-x-max]: http://msdn.microsoft.com/en-us/library/ie/jj127337(v=vs.85).aspx 540 | [scroll-limit-x-min]: http://msdn.microsoft.com/en-us/library/ie/jj127338(v=vs.85).aspx 541 | [scroll-limit-y-max]: http://msdn.microsoft.com/en-us/library/ie/jj127339(v=vs.85).aspx 542 | [scroll-limit-y-min]: http://msdn.microsoft.com/en-us/library/ie/jj127340(v=vs.85).aspx 543 | [scroll-rails]: http://msdn.microsoft.com/en-us/library/ie/hh772035(v=vs.85).aspx 544 | [scroll-snap-points-x]: http://msdn.microsoft.com/en-us/library/ie/hh772036(v=vs.85).aspx 545 | [scroll-snap-points-y]: http://msdn.microsoft.com/en-us/library/ie/hh772037(v=vs.85).aspx 546 | [scroll-snap-type]: http://msdn.microsoft.com/en-us/library/ie/hh772038(v=vs.85).aspx 547 | [scroll-snap-x]: http://msdn.microsoft.com/en-us/library/ie/hh772039(v=vs.85).aspx 548 | [scroll-snap-y]: http://msdn.microsoft.com/en-us/library/ie/hh772040(v=vs.85).aspx 549 | [scroll-translation]: http://msdn.microsoft.com/en-us/library/ie/hh973361(v=vs.85).aspx 550 | [scrollbar-arrow-color]: http://msdn.microsoft.com/en-us/library/ie/ms531154(v=vs.85).aspx 551 | [scrollbar-base-color]: http://msdn.microsoft.com/en-us/library/ie/ms531155(v=vs.85).aspx 552 | [scrollbar-darkshadow-color]: http://msdn.microsoft.com/en-us/library/ie/ms531156(v=vs.85).aspx 553 | [scrollbar-face-color]: http://msdn.microsoft.com/en-us/library/ie/ms531157(v=vs.85).aspx 554 | [scrollbar-highlight-color]: http://msdn.microsoft.com/en-us/library/ie/ms531158(v=vs.85).aspx 555 | [scrollbar-shadow-color]: http://msdn.microsoft.com/en-us/library/ie/ms531159(v=vs.85).aspx 556 | [scrollbar-track-color]: http://msdn.microsoft.com/en-us/library/ie/ms531160(v=vs.85).aspx 557 | [text-autospace]: http://msdn.microsoft.com/en-us/library/ie/ms531164(v=vs.85).aspx 558 | [text-justify]: http://msdn.microsoft.com/en-us/library/ie/ms531172(v=vs.85).aspx 559 | [text-kashida-space]: http://msdn.microsoft.com/en-us/library/ie/ms531173(v=vs.85).aspx 560 | [text-underline-position]: http://msdn.microsoft.com/en-us/library/ie/ms531176(v=vs.85).aspx 561 | [touch-action]: http://msdn.microsoft.com/en-us/library/ie/hh772044(v=vs.85).aspx 562 | [user-select]: http://msdn.microsoft.com/en-us/library/ie/hh781492(v=vs.85).aspx 563 | [wrap-flow]: http://msdn.microsoft.com/en-us/library/ie/hh772045(v=vs.85).aspx 564 | [wrap-margin]: http://msdn.microsoft.com/en-us/library/ie/hh772042(v=vs.85).aspx 565 | [wrap-through]: http://msdn.microsoft.com/en-us/library/ie/hh771900(v=vs.85).aspx 566 | [writing-mode]: http://msdn.microsoft.com/en-us/library/ie/ms531187(v=vs.85).aspx 567 | 568 | ## Reference 569 | 570 | [CSS properties supported by Mozilla](https://developer.mozilla.org/en-US/docs/Mozilla_CSS_support_chart) 571 | [CSS properties supported by Apple](http://developer.apple.com/library/safari/#documentation/appleapplications/reference/safaricssref/articles/standardcssproperties.html) 572 | [CSS properties supported by Microsoft](http://msdn.microsoft.com/en-us/library/windows/apps/hh767304.aspx) 573 | [CSS properties recognized by Webkit](http://trac.webkit.org/browser/trunk/Source/WebCore/css/CSSPropertyNames.in) 574 | -------------------------------------------------------------------------------- /css-prefixes.json: -------------------------------------------------------------------------------- 1 | { 2 | "accelerator": ["ms"], 3 | "align-content": ["webkit", "unprefixed"], 4 | "align-items": ["webkit", "unprefixed"], 5 | "align-self": ["webkit", "unprefixed"], 6 | "animation": ["webkit", "moz", "o", "unprefixed"], 7 | "animation-delay": ["webkit", "moz", "o", "unprefixed"], 8 | "animation-direction": ["webkit", "moz", "o", "unprefixed"], 9 | "animation-duration": ["webkit", "moz", "o", "unprefixed"], 10 | "animation-fill-mode": ["webkit", "moz", "o", "unprefixed"], 11 | "animation-iteration-count": ["webkit", "moz", "o", "unprefixed"], 12 | "animation-name": ["webkit", "moz", "o", "unprefixed"], 13 | "animation-play-state": ["webkit", "moz", "o", "unprefixed"], 14 | "animation-timing-function": ["webkit", "moz", "o", "unprefixed"], 15 | "app-region": ["webkit"], 16 | "appearance": ["webkit", "moz"], 17 | "aspect-ratio": ["webkit"], 18 | "backface-visibility": ["webkit", "moz", "unprefixed"], 19 | "background": ["unprefixed"], 20 | "background-attachment": ["unprefixed"], 21 | "background-clip": ["webkit", "moz", "unprefixed"], 22 | "background-color": ["unprefixed"], 23 | "background-composite": ["webkit"], 24 | "background-image": ["unprefixed"], 25 | "background-inline-policy": ["moz"], 26 | "background-origin": ["webkit", "moz", "unprefixed"], 27 | "background-origin-x": ["unprefixed"], 28 | "background-origin-y": ["unprefixed"], 29 | "background-position": ["unprefixed"], 30 | "background-position-x": ["ms", "unprefixed"], 31 | "background-position-y": ["ms", "unprefixed"], 32 | "background-repeat": ["unprefixed"], 33 | "background-repeat-x": ["unprefixed"], 34 | "background-repeat-y": ["unprefixed"], 35 | "background-size": ["unprefixed"], 36 | "behavior": ["ms"], 37 | "binding": ["moz"], 38 | "blend-mode": ["webkit"], 39 | "block-progression": ["ms"], 40 | "border": ["unprefixed"], 41 | "border-after": ["webkit"], 42 | "border-after-color": ["webkit"], 43 | "border-after-style": ["webkit"], 44 | "border-after-width": ["webkit"], 45 | "border-before": ["webkit"], 46 | "border-before-color": ["webkit"], 47 | "border-before-style": ["webkit"], 48 | "border-before-width": ["webkit"], 49 | "border-bottom": ["unprefixed"], 50 | "border-bottom-color": ["unprefixed"], 51 | "border-bottom-colors": ["moz"], 52 | "border-bottom-left-radius": ["unprefixed"], 53 | "border-bottom-right-radius": ["unprefixed"], 54 | "border-bottom-style": ["unprefixed"], 55 | "border-bottom-width": ["unprefixed"], 56 | "border-collapse": ["unprefixed"], 57 | "border-color": ["unprefixed"], 58 | "border-end": ["webkit", "moz"], 59 | "border-end-color": ["webkit", "moz"], 60 | "border-end-style": ["webkit", "moz"], 61 | "border-end-width": ["webkit", "moz"], 62 | "border-fit": ["webkit"], 63 | "border-horizontal-spacing": ["webkit"], 64 | "border-image": ["webkit", "moz", "o", "unprefixed"], 65 | "border-image-outset": ["unprefixed"], 66 | "border-image-repeat": ["unprefixed"], 67 | "border-image-slice": ["unprefixed"], 68 | "border-image-source": ["unprefixed"], 69 | "border-image-width": ["unprefixed"], 70 | "border-left": ["unprefixed"], 71 | "border-left-color": ["unprefixed"], 72 | "border-left-colors": ["unprefixed"], 73 | "border-left-style": ["unprefixed"], 74 | "border-left-width": ["unprefixed"], 75 | "border-radius": ["webkit", "unprefixed"], 76 | "border-radius-bottomleft": ["moz"], 77 | "border-radius-bottomright": ["moz"], 78 | "border-radius-topleft": ["moz"], 79 | "border-radius-topright": ["moz"], 80 | "border-right": ["unprefixed"], 81 | "border-right-color": ["unprefixed"], 82 | "border-right-colors": ["moz"], 83 | "border-right-style": ["unprefixed"], 84 | "border-right-width": ["unprefixed"], 85 | "border-spacing": ["unprefixed"], 86 | "border-start": ["webkit", "moz"], 87 | "border-start-color": ["webkit", "moz"], 88 | "border-start-style": ["webkit", "moz"], 89 | "border-start-width": ["webkit", "moz"], 90 | "border-style": ["unprefixed"], 91 | "border-top": ["unprefixed"], 92 | "border-top-color": ["unprefixed"], 93 | "border-top-colors": ["moz"], 94 | "border-top-left-radius": ["webkit", "unprefixed"], 95 | "border-top-right-radius": ["webkit", "unprefixed"], 96 | "border-top-style": ["unprefixed"], 97 | "border-top-width": ["unprefixed"], 98 | "border-vertical-spacing": ["webkit"], 99 | "border-width": ["unprefixed"], 100 | "bottom": ["unprefixed"], 101 | "box-align": ["webkit", "moz"], 102 | "box-decoration-break": ["webkit", "unprefixed"], 103 | "box-direction": ["webkit", "moz"], 104 | "box-flex": ["webkit", "moz"], 105 | "box-flex-group": ["webkit"], 106 | "box-float-edge": ["moz"], 107 | "box-force-broken-image-icon": ["moz"], 108 | "box-lines": ["webkit"], 109 | "box-ordinal-group": ["webkit", "moz"], 110 | "box-orient": ["webkit", "moz"], 111 | "box-pack": ["webkit", "moz"], 112 | "box-reflect": ["webkit"], 113 | "box-shadow": ["webkit", "unprefixed"], 114 | "box-sizing": ["webkit", "moz", "unprefixed"], 115 | "break-after": ["unprefixed"], 116 | "break-before": ["unprefixed"], 117 | "break-inside": ["unprefixed"], 118 | "caption-side": ["unprefixed"], 119 | "clear": ["unprefixed"], 120 | "clip": ["unprefixed"], 121 | "clip-path": ["unprefixed"], 122 | "color": ["unprefixed"], 123 | "color-correction": ["webkit"], 124 | "column-axis": ["webkit"], 125 | "column-break-after": ["webkit"], 126 | "column-break-before": ["webkit"], 127 | "column-break-inside": ["webkit"], 128 | "column-count": ["webkit", "moz", "unprefixed"], 129 | "column-fill": ["moz", "unprefixed"], 130 | "column-gap": ["webkit", "moz", "unprefixed"], 131 | "column-progression": ["webkit"], 132 | "column-rule": ["webkit", "moz", "unprefixed"], 133 | "column-rule-color": ["webkit", "moz", "unprefixed"], 134 | "column-rule-style": ["webkit", "moz", "unprefixed"], 135 | "column-rule-width": ["webkit", "moz", "unprefixed"], 136 | "column-span": ["webkit", "unprefixed"], 137 | "column-width": ["webkit", "moz", "unprefixed"], 138 | "columns": ["webkit", "moz", "unprefixed"], 139 | "content": ["unprefixed"], 140 | "content-zoom-chaining": ["ms"], 141 | "content-zoom-limit": ["ms"], 142 | "content-zoom-limit-max": ["ms"], 143 | "content-zoom-limit-min": ["ms"], 144 | "content-zoom-snap": ["ms"], 145 | "content-zoom-snap-points": ["ms"], 146 | "content-zoom-snap-type": ["ms"], 147 | "content-zooming": ["ms"], 148 | "counter-increment": ["unprefixed"], 149 | "counter-reset": ["unprefixed"], 150 | "cursor": ["unprefixed"], 151 | "dashboard-region": ["webkit"], 152 | "device-pixel-ratio": ["o"], 153 | "direction": ["unprefixed"], 154 | "display": ["unprefixed"], 155 | "empty-cells": ["unprefixed"], 156 | "filter": ["webkit", "ms"], 157 | "flex": ["webkit", "ms", "unprefixed"], 158 | "flex-align": ["ms"], 159 | "flex-basis": ["webkit", "unprefixed"], 160 | "flex-direction": ["webkit", "ms", "unprefixed"], 161 | "flex-flow": ["webkit", "unprefixed"], 162 | "flex-grow": ["webkit", "unprefixed"], 163 | "flex-order": ["ms"], 164 | "flex-pack": ["ms"], 165 | "flex-shrink": ["webkit", "unprefixed"], 166 | "flex-wrap": ["webkit", "ms", "unprefixed"], 167 | "float": ["unprefixed"], 168 | "flow-from": ["webkit", "ms"], 169 | "flow-intro": ["webkit", "ms"], 170 | "font": ["unprefixed"], 171 | "font-family": ["unprefixed"], 172 | "font-feature-settings": ["webkit", "moz", "unprefixed"], 173 | "font-kerning": ["webkit"], 174 | "font-language-override": ["moz"], 175 | "font-size": ["unprefixed"], 176 | "font-size-adjust": ["unprefixed"], 177 | "font-size-delta": ["webkit"], 178 | "font-smoothing": ["webkit"], 179 | "font-stretch": ["unprefixed"], 180 | "font-style": ["unprefixed"], 181 | "font-variant": ["unprefixed"], 182 | "font-variant-ligatures": ["webkit"], 183 | "font-weight": ["unprefixed"], 184 | "grid-column": ["webkit", "ms"], 185 | "grid-column-align": ["ms"], 186 | "grid-column-span": ["ms"], 187 | "grid-columns": ["webkit", "ms"], 188 | "grid-row": ["webkit", "ms"], 189 | "grid-row-align": ["ms"], 190 | "grid-row-span": ["ms"], 191 | "grid-rows": ["webkit", "ms"], 192 | "height": ["unprefixed"], 193 | "high-contrast-adjust": ["ms"], 194 | "highlight": ["webkit"], 195 | "hyphenate-character": ["webkit"], 196 | "hyphenate-limit-after": ["webkit"], 197 | "hyphenate-limit-before": ["webkit"], 198 | "hyphenate-limit-chars": ["ms"], 199 | "hyphenate-limit-lines": ["webkit", "ms"], 200 | "hyphenate-limit-zone": ["ms"], 201 | "hyphens": ["webkit", "moz", "ms"], 202 | "image-region": ["moz"], 203 | "image-rendering": ["unprefixed"], 204 | "image-resolution": ["unprefixed"], 205 | "image-orientation": ["unprefixed"], 206 | "ime-mode": ["unprefixed"], 207 | "interpolation-mode": ["ms"], 208 | "justify-content": ["webkit", "unprefixed"], 209 | "layout-flow": ["ms"], 210 | "layout-grid": ["ms"], 211 | "layout-grid-char": ["ms"], 212 | "layout-grid-line": ["ms"], 213 | "layout-grid-mode": ["ms"], 214 | "layout-grid-type": ["ms"], 215 | "left": ["unprefixed"], 216 | "letter-spacing": ["unprefixed"], 217 | "line-align": ["webkit"], 218 | "line-box-contain": ["webkit"], 219 | "line-break": ["webkit", "ms"], 220 | "line-clamp": ["webkit"], 221 | "line-grid": ["webkit"], 222 | "line-height": ["unprefixed"], 223 | "line-snap": ["webkit"], 224 | "list-style": ["unprefixed"], 225 | "list-style-image": ["unprefixed"], 226 | "list-style-position": ["unprefixed"], 227 | "list-style-type": ["unprefixed"], 228 | "locale": ["webkit"], 229 | "logical-height": ["webkit"], 230 | "logical-width": ["webkit"], 231 | "margin": ["unprefixed"], 232 | "margin-after": ["webkit"], 233 | "margin-after-collapse": ["webkit"], 234 | "margin-before": ["webkit"], 235 | "margin-before-collapse": ["webkit"], 236 | "margin-bottom": ["unprefixed"], 237 | "margin-bottom-collapse": ["webkit"], 238 | "margin-collapse": ["webkit"], 239 | "margin-end": ["webkit", "moz"], 240 | "margin-left": ["unprefixed"], 241 | "margin-right": ["unprefixed"], 242 | "margin-start": ["webkit", "moz"], 243 | "margin-top": ["unprefixed"], 244 | "margin-top-collapse": ["webkit"], 245 | "marquee": ["webkit"], 246 | "marquee-direction": ["webkit"], 247 | "marquee-increment": ["webkit"], 248 | "marquee-repetition": ["webkit"], 249 | "marquee-speed": ["webkit"], 250 | "marquee-style": ["webkit"], 251 | "mask": ["webkit"], 252 | "mask-attachment": ["webkit"], 253 | "mask-box-image": ["webkit"], 254 | "mask-box-image-outset": ["webkit"], 255 | "mask-box-image-repeat": ["webkit"], 256 | "mask-box-image-slice": ["webkit"], 257 | "mask-box-image-source": ["webkit"], 258 | "mask-box-image-width": ["webkit"], 259 | "mask-clip": ["webkit"], 260 | "mask-composite": ["webkit"], 261 | "mask-image": ["webkit"], 262 | "mask-origin": ["webkit"], 263 | "mask-position": ["webkit"], 264 | "mask-position-x": ["webkit"], 265 | "mask-position-y": ["webkit"], 266 | "mask-repeat": ["webkit"], 267 | "mask-repeat-x": ["webkit"], 268 | "mask-repeat-y": ["webkit"], 269 | "mask-size": ["webkit"], 270 | "match-nearest-mail-blockquote-color": ["webkit"], 271 | "max-height": ["unprefixed"], 272 | "max-logical-height": ["webkit"], 273 | "max-logical-width": ["webkit"], 274 | "max-width": ["unprefixed"], 275 | "max-zoom": ["unprefixed"], 276 | "min-height": ["unprefixed"], 277 | "min-logical-height": ["webkit"], 278 | "min-logical-width": ["webkit"], 279 | "min-width": ["unprefixed"], 280 | "min-zoom": ["unprefixed"], 281 | "nav-down": ["unprefixed"], 282 | "nav-index": ["unprefixed"], 283 | "nav-left": ["unprefixed"], 284 | "nav-right": ["unprefixed"], 285 | "nav-up": ["unprefixed"], 286 | "nbsp-mode": ["webkit"], 287 | "object-fit": ["o"], 288 | "object-position": ["o"], 289 | "opacity": ["unprefixed"], 290 | "order": ["webkit", "unprefixed"], 291 | "orient": ["moz"], 292 | "orientation": ["unprefixed"], 293 | "orphans": ["unprefixed"], 294 | "outline": ["unprefixed"], 295 | "outline-color": ["unprefixed"], 296 | "outline-offset": ["unprefixed"], 297 | "outline-radius": ["moz"], 298 | "outline-radius-bottomleft": ["moz"], 299 | "outline-radius-bottomright": ["moz"], 300 | "outline-radius-topleft": ["moz"], 301 | "outline-radius-topright": ["moz"], 302 | "outline-style": ["unprefixed"], 303 | "outline-width": ["unprefixed"], 304 | "overflow": ["unprefixed"], 305 | "overflow-scrolling": ["webkit"], 306 | "overflow-style": ["ms"], 307 | "overflow-wrap": ["unprefixed"], 308 | "overflow-x": ["ms", "unprefixed"], 309 | "overflow-y": ["ms", "unprefixed"], 310 | "padding": ["unprefixed"], 311 | "padding-after": ["webkit"], 312 | "padding-before": ["webkit"], 313 | "padding-bottom": ["unprefixed"], 314 | "padding-end": ["webkit", "moz"], 315 | "padding-left": ["unprefixed"], 316 | "padding-right": ["unprefixed"], 317 | "padding-start": ["webkit", "moz"], 318 | "padding-top": ["unprefixed"], 319 | "page": ["unprefixed"], 320 | "page-break-after": ["unprefixed"], 321 | "page-break-before": ["unprefixed"], 322 | "page-break-inside": ["unprefixed"], 323 | "perspective": ["webkit", "moz", "unprefixed"], 324 | "perspective-origin": ["webkit", "moz", "unprefixed"], 325 | "perspective-origin-x": ["webkit"], 326 | "perspective-origin-y": ["webkit"], 327 | "pointer-events": ["unprefixed"], 328 | "position": ["unprefixed"], 329 | "print-color-adjust": ["webkit"], 330 | "progress-appearance": ["ms"], 331 | "quotes": ["unprefixed"], 332 | "region-overflow": ["webkit"], 333 | "region-break-after": ["webkit"], 334 | "region-break-before": ["webkit"], 335 | "region-break-inside": ["webkit"], 336 | "resize": ["unprefixed"], 337 | "right": ["unprefixed"], 338 | "rtl-ordering": ["webkit"], 339 | "ruby-align": ["unprefixed"], 340 | "ruby-overhang": ["unprefixed"], 341 | "ruby-position": ["unprefixed"], 342 | "script-level": ["moz"], 343 | "script-min-size": ["moz"], 344 | "script-size-multiplier": ["moz"], 345 | "scroll-chaining": ["ms"], 346 | "scroll-limit": ["ms"], 347 | "scroll-limit-x-max": ["ms"], 348 | "scroll-limit-x-min": ["ms"], 349 | "scroll-limit-y-max": ["ms"], 350 | "scroll-limit-y-min": ["ms"], 351 | "scroll-rails": ["ms"], 352 | "scroll-snap-points-x": ["ms"], 353 | "scroll-snap-points-y": ["ms"], 354 | "scroll-snap-type": ["ms"], 355 | "scroll-snap-x": ["ms"], 356 | "scroll-snap-y": ["ms"], 357 | "scroll-translation": ["ms"], 358 | "scrollbar-3dlight-color": ["ms"], 359 | "scrollbar-arrow-color": ["ms"], 360 | "scrollbar-base-color": ["ms"], 361 | "scrollbar-darkshadow-color": ["ms"], 362 | "scrollbar-face-color": ["ms"], 363 | "scrollbar-highlight-color": ["ms"], 364 | "scrollbar-shadow-color": ["ms"], 365 | "scrollbar-track-color": ["ms"], 366 | "shape-inside": ["webkit"], 367 | "shape-outside": ["webkit"], 368 | "size": ["unprefixed"], 369 | "src": ["unprefixed"], 370 | "speak": ["unprefixed"], 371 | "stack-sizing": ["moz"], 372 | "svg-shadow": ["webkit"], 373 | "tab-size": ["moz", "o", "unprefixed"], 374 | "table-baseline": ["o"], 375 | "table-layout": ["unprefixed"], 376 | "tap-highlight-color": ["webkit"], 377 | "text-align": ["unprefixed"], 378 | "text-align-last": ["moz", "ms"], 379 | "text-autospace": ["ms"], 380 | "text-blink": ["moz"], 381 | "text-combine": ["webkit"], 382 | "text-decoration": ["unprefixed"], 383 | "text-decoration-color": ["webkit"], 384 | "text-decoration-line": ["webkit"], 385 | "text-decoration-skip": ["webkit"], 386 | "text-decoration-style": ["webkit"], 387 | "text-decorations-in-effect": ["webkit"], 388 | "text-emphasis": ["webkit"], 389 | "text-emphasis-color": ["webkit"], 390 | "text-emphasis-position": ["webkit"], 391 | "text-emphasis-style": ["webkit"], 392 | "text-fill-color": ["webkit"], 393 | "text-indent": ["unprefixed"], 394 | "text-justify": ["ms"], 395 | "text-kashida-space": ["ms"], 396 | "text-line-through": ["unprefixed"], 397 | "text-line-through-color": ["unprefixed"], 398 | "text-line-through-mode": ["unprefixed"], 399 | "text-line-through-style": ["unprefixed"], 400 | "text-line-through-width": ["unprefixed"], 401 | "text-orientation": ["webkit"], 402 | "text-overflow": ["ms", "unprefixed"], 403 | "text-overflow-ellipsis": ["unprefixed"], 404 | "text-overflow-mode": ["unprefixed"], 405 | "text-overline": ["unprefixed"], 406 | "text-overline-color": ["unprefixed"], 407 | "text-overline-mode": ["unprefixed"], 408 | "text-overline-style": ["unprefixed"], 409 | "text-overline-width": ["unprefixed"], 410 | "text-rendering": ["unprefixed"], 411 | "text-security": ["webkit"], 412 | "text-shadow": ["unprefixed"], 413 | "text-size-adjust": ["webkit"], 414 | "text-stroke": ["webkit"], 415 | "text-stroke-color": ["webkit"], 416 | "text-stroke-width": ["webkit"], 417 | "text-transform": ["unprefixed"], 418 | "text-underline": ["unprefixed"], 419 | "text-underline-color": ["unprefixed"], 420 | "text-underline-mode": ["unprefixed"], 421 | "text-underline-position": ["ms"], 422 | "text-underline-style": ["unprefixed"], 423 | "text-underline-width": ["unprefixed"], 424 | "top": ["unprefixed"], 425 | "touch-action": ["ms"], 426 | "touch-callout": ["webkit"], 427 | "transform": ["webkit", "moz", "ms", "o", "unprefixed"], 428 | "transform-origin": ["webkit", "moz", "ms", "o", "unprefixed"], 429 | "transform-origin-x": ["webkit"], 430 | "transform-origin-y": ["webkit"], 431 | "transform-origin-z": ["webkit"], 432 | "transform-style": ["webkit", "moz", "unprefixed"], 433 | "transition": ["webkit", "moz", "o", "unprefixed"], 434 | "transition-delay": ["webkit", "moz", "o", "unprefixed"], 435 | "transition-duration": ["webkit", "moz", "o", "unprefixed"], 436 | "transition-property": ["webkit", "moz", "o", "unprefixed"], 437 | "transition-timing-function": ["webkit", "moz", "o", "unprefixed"], 438 | "unicode-bidi": ["moz", "unprefixed"], 439 | "unicode-range": ["unprefixed"], 440 | "user-drag": ["webkit"], 441 | "user-focus": ["moz"], 442 | "user-input": ["moz"], 443 | "user-modify": ["webkit", "moz"], 444 | "user-select": ["webkit", "moz", "ms"], 445 | "user-zoom": ["unprefixed"], 446 | "vertical-align": ["unprefixed"], 447 | "visibility": ["unprefixed"], 448 | "white-space": ["unprefixed"], 449 | "widows": ["unprefixed"], 450 | "width": ["unprefixed"], 451 | "window-shadow": ["moz"], 452 | "word-break": ["unprefixed"], 453 | "word-spacing": ["unprefixed"], 454 | "word-wrap": ["unprefixed"], 455 | "wrap": ["webkit"], 456 | "wrap-flow": ["webkit", "ms"], 457 | "wrap-margin": ["webkit", "ms"], 458 | "wrap-padding": ["webkit"], 459 | "wrap-through": ["webkit", "ms"], 460 | "writing-mode": ["webkit", "ms"], 461 | "z-index": ["unprefixed"], 462 | "zoom": ["ms", "unprefixed"] 463 | } 464 | --------------------------------------------------------------------------------