cssdb.json 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892
  1. [
  2. {
  3. "id": "all-property",
  4. "title": "`all` Property",
  5. "description": "A property for defining the reset of all properties of an element",
  6. "specification": "https://www.w3.org/TR/css-cascade-3/#all-shorthand",
  7. "stage": 4,
  8. "caniuse": "css-all",
  9. "docs": {
  10. "mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/all"
  11. },
  12. "example": "a {\n all: initial;\n}",
  13. "polyfills": [
  14. {
  15. "type": "PostCSS Plugin",
  16. "link": "https://github.com/maximkoretskiy/postcss-initial"
  17. }
  18. ]
  19. },
  20. {
  21. "id": "any-link-pseudo-class",
  22. "title": "`:any-link` Hyperlink Pseudo-Class",
  23. "description": "A pseudo-class for matching anchor elements independent of whether they have been visited",
  24. "specification": "https://www.w3.org/TR/selectors-4/#any-link-pseudo",
  25. "stage": 2,
  26. "caniuse": "css-any-link",
  27. "docs": {
  28. "mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/:any-link"
  29. },
  30. "example": "nav :any-link > span {\n background-color: yellow;\n}",
  31. "polyfills": [
  32. {
  33. "type": "PostCSS Plugin",
  34. "link": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-pseudo-class-any-link"
  35. }
  36. ]
  37. },
  38. {
  39. "id": "blank-pseudo-class",
  40. "title": "`:blank` Empty-Value Pseudo-Class",
  41. "description": "A pseudo-class for matching form elements when they are empty",
  42. "specification": "https://drafts.csswg.org/selectors-4/#blank",
  43. "stage": 1,
  44. "docs": {
  45. "mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/:blank"
  46. },
  47. "example": "input:blank {\n background-color: yellow;\n}",
  48. "polyfills": [
  49. {
  50. "type": "JavaScript Library",
  51. "link": "https://github.com/csstools/postcss-plugins/tree/main/plugins/css-blank-pseudo"
  52. },
  53. {
  54. "type": "PostCSS Plugin",
  55. "link": "https://github.com/csstools/postcss-plugins/tree/main/plugins/css-blank-pseudo"
  56. }
  57. ]
  58. },
  59. {
  60. "id": "break-properties",
  61. "title": "Break Properties",
  62. "description": "Properties for defining the break behavior between and within boxes",
  63. "specification": "https://www.w3.org/TR/css-break-3/#breaking-controls",
  64. "stage": 3,
  65. "caniuse": "multicolumn",
  66. "docs": {
  67. "mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/break-after"
  68. },
  69. "example": "a {\n break-inside: avoid;\n break-before: avoid-column;\n break-after: always;\n}",
  70. "polyfills": [
  71. {
  72. "type": "PostCSS Plugin",
  73. "link": "https://github.com/shrpne/postcss-page-break"
  74. }
  75. ]
  76. },
  77. {
  78. "id": "case-insensitive-attributes",
  79. "title": "Case-Insensitive Attributes",
  80. "description": "An attribute selector matching attribute values case-insensitively",
  81. "specification": "https://www.w3.org/TR/selectors-4/#attribute-case",
  82. "stage": 2,
  83. "caniuse": "css-case-insensitive",
  84. "docs": {
  85. "mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/Attribute_selectors"
  86. },
  87. "example": "[frame=hsides i] {\n border-style: solid none;\n}",
  88. "polyfills": [
  89. {
  90. "type": "PostCSS Plugin",
  91. "link": "https://github.com/Semigradsky/postcss-attribute-case-insensitive"
  92. }
  93. ]
  94. },
  95. {
  96. "id": "color-adjust",
  97. "title": "`color-adjust` Property",
  98. "description": "The color-adjust property is a non-standard CSS extension that can be used to force printing of background colors and images",
  99. "specification": "https://www.w3.org/TR/css-color-4/#color-adjust",
  100. "stage": 2,
  101. "caniuse": "css-color-adjust",
  102. "docs": {
  103. "mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/color-adjust"
  104. },
  105. "example": ".background {\n background-color:#ccc;\n}\n.background.color-adjust {\n color-adjust: economy;\n}\n.background.color-adjust-exact {\n color-adjust: exact;\n}"
  106. },
  107. {
  108. "id": "color-contrast",
  109. "title": "`color-contrast()` Function",
  110. "description": "A function for choosing the color that contrasts the most.",
  111. "specification": "https://drafts.csswg.org/css-color-5/#funcdef-color-contrast",
  112. "stage": 1,
  113. "docs": {
  114. "mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/color-contrast()"
  115. },
  116. "example": "p {\n color: color-contrast(wheat vs tan, sienna, var(--myAccent), #d2691e);\n}",
  117. "polyfills": []
  118. },
  119. {
  120. "id": "color-functional-notation",
  121. "title": "Color Functional Notation",
  122. "description": "A space and slash separated notation for specifying colors",
  123. "specification": "https://drafts.csswg.org/css-color/#ref-for-funcdef-rgb%E2%91%A1%E2%91%A0",
  124. "stage": 1,
  125. "example": "em {\n background-color: hsl(120deg 100% 25%);\n box-shadow: 0 0 0 10px hwb(120deg 100% 25% / 80%);\n color: rgb(0 255 0);\n}",
  126. "polyfills": [
  127. {
  128. "type": "PostCSS Plugin",
  129. "link": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation"
  130. }
  131. ]
  132. },
  133. {
  134. "id": "color-mix",
  135. "title": "`color-mix()` Function",
  136. "description": "A function for mixing colors",
  137. "specification": "https://drafts.csswg.org/css-color-5/#color-mix",
  138. "stage": -1,
  139. "example": "p {\n color: color-mix(in lch, purple 50%, plum 50%);\n}",
  140. "polyfills": []
  141. },
  142. {
  143. "id": "color-mod-function",
  144. "title": "`color-mod()` Function",
  145. "description": "A function for modifying colors",
  146. "specification": "https://www.w3.org/TR/css-color-4/#funcdef-color-mod",
  147. "stage": -1,
  148. "example": "p {\n color: color-mod(black alpha(50%));\n}",
  149. "polyfills": [
  150. {
  151. "type": "PostCSS Plugin",
  152. "link": "https://github.com/csstools/postcss-color-mod-function"
  153. }
  154. ]
  155. },
  156. {
  157. "id": "container-queries",
  158. "title": "Container Queries",
  159. "description": "New container property and container at rule to make changes depending on the container's size",
  160. "specification": "https://drafts.csswg.org/css-contain-3/#container-queries",
  161. "stage": 0,
  162. "caniuse": "css-container-queries",
  163. "docs": {
  164. "mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Container_Queries"
  165. },
  166. "example": ".container {\n contain: layout inline-size;\n}\n\n@container (min-width: 700px) {\n .container {\n /* styles applied when a container is at least 700px */\n }\n}",
  167. "polyfills": [
  168. {
  169. "type": "PostCSS Plugin",
  170. "link": "https://github.com/jsxtools/cqfill"
  171. },
  172. {
  173. "type": "JavaScript Library",
  174. "link": "https://www.npmjs.com/package/container-query-polyfill"
  175. }
  176. ]
  177. },
  178. {
  179. "id": "custom-media-queries",
  180. "title": "Custom Media Queries",
  181. "description": "An at-rule for defining aliases that represent media queries",
  182. "specification": "https://drafts.csswg.org/mediaqueries-5/#at-ruledef-custom-media",
  183. "stage": 1,
  184. "example": "@custom-media --narrow-window (max-width: 30em);\n\n@media (--narrow-window) {}",
  185. "polyfills": [
  186. {
  187. "type": "PostCSS Plugin",
  188. "link": "https://github.com/postcss/postcss-custom-media"
  189. }
  190. ]
  191. },
  192. {
  193. "id": "custom-properties",
  194. "title": "Custom Properties",
  195. "description": "A syntax for defining custom values accepted by all CSS properties",
  196. "specification": "https://www.w3.org/TR/css-variables-1/",
  197. "stage": 3,
  198. "caniuse": "css-variables",
  199. "docs": {
  200. "mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/var"
  201. },
  202. "example": "img {\n --some-length: 32px;\n\n height: var(--some-length);\n width: var(--some-length);\n}",
  203. "polyfills": [
  204. {
  205. "type": "PostCSS Plugin",
  206. "link": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties"
  207. }
  208. ]
  209. },
  210. {
  211. "id": "custom-property-sets",
  212. "title": "Custom Property Sets",
  213. "description": "A syntax for storing properties in named variables, referenceable in other style rules",
  214. "specification": "https://tabatkins.github.io/specs/css-apply-rule/",
  215. "stage": -1,
  216. "caniuse": "css-apply-rule",
  217. "example": "img {\n --some-length-styles: {\n height: 32px;\n width: 32px;\n };\n\n @apply --some-length-styles;\n}",
  218. "polyfills": [
  219. {
  220. "type": "PostCSS Plugin",
  221. "link": "https://github.com/pascalduez/postcss-apply"
  222. }
  223. ]
  224. },
  225. {
  226. "id": "custom-selectors",
  227. "title": "Custom Selectors",
  228. "description": "An at-rule for defining aliases that represent selectors",
  229. "specification": "https://drafts.csswg.org/css-extensions/#custom-selectors",
  230. "stage": 1,
  231. "example": "@custom-selector :--heading h1, h2, h3, h4, h5, h6;\n\narticle :--heading + p {}",
  232. "polyfills": [
  233. {
  234. "type": "PostCSS Plugin",
  235. "link": "https://github.com/postcss/postcss-custom-selectors"
  236. }
  237. ]
  238. },
  239. {
  240. "id": "dir-pseudo-class",
  241. "title": "`:dir` Directionality Pseudo-Class",
  242. "description": "A pseudo-class for matching elements based on their directionality",
  243. "specification": "https://www.w3.org/TR/selectors-4/#dir-pseudo",
  244. "stage": 2,
  245. "caniuse": "css-dir-pseudo",
  246. "docs": {
  247. "mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/:dir"
  248. },
  249. "example": "blockquote:dir(rtl) {\n margin-right: 10px;\n}\n\nblockquote:dir(ltr) {\n margin-left: 10px;\n}",
  250. "polyfills": [
  251. {
  252. "type": "PostCSS Plugin",
  253. "link": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-dir-pseudo-class"
  254. }
  255. ]
  256. },
  257. {
  258. "id": "double-position-gradients",
  259. "title": "Double Position Gradients",
  260. "description": "A syntax for using two positions in a gradient.",
  261. "specification": "https://www.w3.org/TR/css-images-4/#color-stop-syntax",
  262. "stage": 2,
  263. "caniuse-compat": {
  264. "and_chr": {
  265. "71": "y"
  266. },
  267. "chrome": {
  268. "71": "y"
  269. },
  270. "edge": {
  271. "79": "y"
  272. },
  273. "ios_saf": {
  274. "12.2": "y"
  275. },
  276. "opera": {
  277. "58": "y"
  278. }
  279. },
  280. "example": ".pie_chart {\n background-image: conic-gradient(yellowgreen 40%, gold 0deg 75%, #f06 0deg);\n}",
  281. "polyfills": [
  282. {
  283. "type": "PostCSS Plugin",
  284. "link": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-double-position-gradients"
  285. }
  286. ]
  287. },
  288. {
  289. "id": "environment-variables",
  290. "title": "Custom Environment Variables",
  291. "description": "A syntax for using custom values accepted by CSS globally",
  292. "specification": "https://drafts.csswg.org/css-env-1/",
  293. "stage": 0,
  294. "caniuse": "css-env-function",
  295. "docs": {
  296. "mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/env"
  297. },
  298. "example": "@media (max-width: env(--brand-small)) {\n body {\n padding: env(--brand-spacing);\n }\n}",
  299. "polyfills": [
  300. {
  301. "type": "PostCSS Plugin",
  302. "link": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-env-function"
  303. }
  304. ]
  305. },
  306. {
  307. "id": "fangsong-font-family",
  308. "title": "`fangsong` Font Family",
  309. "description": "A generic font used for Fang Song (仿宋) typefaces in Chinese",
  310. "specification": "https://www.w3.org/TR/css-fonts-4/#fangsong-def",
  311. "stage": 2,
  312. "docs": {
  313. "mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/font-family#Syntax"
  314. },
  315. "example": "body {\n font-family: fangsong;\n}",
  316. "polyfills": [
  317. {
  318. "type": "PostCSS Plugin",
  319. "link": "https://github.com/JLHwung/postcss-font-family-fangsong"
  320. }
  321. ]
  322. },
  323. {
  324. "id": "focus-visible-pseudo-class",
  325. "title": "`:focus-visible` Focus-Indicated Pseudo-Class",
  326. "description": "A pseudo-class for matching focused elements that indicate that focus to a user",
  327. "specification": "https://www.w3.org/TR/selectors-4/#focus-visible-pseudo",
  328. "stage": 2,
  329. "caniuse": "css-focus-visible",
  330. "docs": {
  331. "mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-visible"
  332. },
  333. "example": ":focus:not(:focus-visible) {\n outline: 0;\n}",
  334. "polyfills": [
  335. {
  336. "type": "JavaScript Library",
  337. "link": "https://github.com/WICG/focus-visible"
  338. },
  339. {
  340. "type": "PostCSS Plugin",
  341. "link": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-focus-visible"
  342. }
  343. ]
  344. },
  345. {
  346. "id": "focus-within-pseudo-class",
  347. "title": "`:focus-within` Focus Container Pseudo-Class",
  348. "description": "A pseudo-class for matching elements that are either focused or that have focused descendants",
  349. "specification": "https://www.w3.org/TR/selectors-4/#focus-within-pseudo",
  350. "stage": 2,
  351. "caniuse": "css-focus-within",
  352. "docs": {
  353. "mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-within"
  354. },
  355. "example": "form:focus-within {\n background: rgba(0, 0, 0, 0.3);\n}",
  356. "polyfills": [
  357. {
  358. "type": "JavaScript Library",
  359. "link": "https://github.com/jsxtools/focus-within"
  360. },
  361. {
  362. "type": "PostCSS Plugin",
  363. "link": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-focus-within"
  364. }
  365. ]
  366. },
  367. {
  368. "id": "font-format-keywords",
  369. "title": "Font `format()` Keywords",
  370. "description": "A syntax for specifying font format as a keyword in `@font-face` rule’s `format()` function",
  371. "specification": "https://www.w3.org/TR/css-fonts-4/#font-format-values",
  372. "stage": 1,
  373. "docs": {
  374. "mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face"
  375. },
  376. "example": "@font-face {\n src: url(file.woff2) format(woff2);\n}",
  377. "polyfills": [
  378. {
  379. "type": "PostCSS Plugin",
  380. "link": "https://github.com/valtlai/postcss-font-format-keywords"
  381. }
  382. ]
  383. },
  384. {
  385. "id": "font-variant-property",
  386. "title": "`font-variant` Property",
  387. "description": "A property for defining the usage of alternate glyphs in a font",
  388. "specification": "https://www.w3.org/TR/css-fonts-3/#propdef-font-variant",
  389. "stage": 4,
  390. "caniuse": "font-variant-alternates",
  391. "docs": {
  392. "mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/font-variant"
  393. },
  394. "example": "h2 {\n font-variant: small-caps;\n}",
  395. "polyfills": [
  396. {
  397. "type": "PostCSS Plugin",
  398. "link": "https://github.com/postcss/postcss-font-variant"
  399. }
  400. ]
  401. },
  402. {
  403. "id": "gap-properties",
  404. "title": "Gap Properties",
  405. "description": "Properties for defining gutters within a layout",
  406. "specification": "https://www.w3.org/TR/css-grid-1/#gutters",
  407. "stage": 3,
  408. "caniuse-compat": {
  409. "chrome": {
  410. "66": "y"
  411. },
  412. "edge": {
  413. "16": "y"
  414. },
  415. "firefox": {
  416. "61": "y"
  417. },
  418. "safari": {
  419. "11.2": "y",
  420. "TP": "y"
  421. }
  422. },
  423. "docs": {
  424. "mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/gap"
  425. },
  426. "example": ".grid-1 {\n gap: 20px;\n}\n\n.grid-2 {\n column-gap: 40px;\n row-gap: 20px;\n}",
  427. "polyfills": [
  428. {
  429. "type": "PostCSS Plugin",
  430. "link": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-gap-properties"
  431. }
  432. ]
  433. },
  434. {
  435. "id": "gray-function",
  436. "title": "`gray()` Function",
  437. "description": "A function for specifying fully desaturated colors",
  438. "specification": "https://www.w3.org/TR/css-color-4/#funcdef-gray",
  439. "stage": -1,
  440. "example": "p {\n color: gray(50);\n}",
  441. "polyfills": [
  442. {
  443. "type": "PostCSS Plugin",
  444. "link": "https://github.com/postcss/postcss-color-gray"
  445. }
  446. ]
  447. },
  448. {
  449. "id": "grid-layout",
  450. "title": "Grid Layout",
  451. "description": "A syntax for using a grid concept to lay out content",
  452. "specification": "https://www.w3.org/TR/css-grid-1/",
  453. "stage": 3,
  454. "caniuse": "css-grid",
  455. "docs": {
  456. "mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/grid"
  457. },
  458. "example": "section {\n display: grid;\n grid-template-columns: 100px 100px 100px;\n grid-gap: 10px;\n}",
  459. "polyfills": [
  460. {
  461. "type": "PostCSS Plugin",
  462. "link": "https://github.com/postcss/autoprefixer"
  463. }
  464. ]
  465. },
  466. {
  467. "id": "has-pseudo-class",
  468. "title": "`:has()` Relational Pseudo-Class",
  469. "description": "A pseudo-class for matching ancestor and sibling elements",
  470. "specification": "https://www.w3.org/TR/selectors-4/#has-pseudo",
  471. "stage": 2,
  472. "caniuse": "css-has",
  473. "docs": {
  474. "mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/:has"
  475. },
  476. "example": "a:has(> img) {\n display: block;\n}",
  477. "polyfills": [
  478. {
  479. "type": "JavaScript Library",
  480. "link": "https://github.com/csstools/postcss-plugins/tree/main/plugins/css-has-pseudo"
  481. },
  482. {
  483. "type": "PostCSS Plugin",
  484. "link": "https://github.com/csstools/postcss-plugins/tree/main/plugins/css-has-pseudo"
  485. }
  486. ]
  487. },
  488. {
  489. "id": "hexadecimal-alpha-notation",
  490. "title": "Hexadecimal Alpha Notation",
  491. "description": "A 4 & 8 character hex color notation for specifying the opacity level",
  492. "specification": "https://www.w3.org/TR/css-color-4/#hex-notation",
  493. "stage": 2,
  494. "caniuse": "css-rrggbbaa",
  495. "docs": {
  496. "mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/color_value#Syntax_2"
  497. },
  498. "example": "section {\n background-color: #f3f3f3f3;\n color: #0003;\n}",
  499. "polyfills": [
  500. {
  501. "type": "PostCSS Plugin",
  502. "link": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-hex-alpha"
  503. }
  504. ]
  505. },
  506. {
  507. "id": "hwb-function",
  508. "title": "`hwb()` Function",
  509. "description": "A function for specifying colors by hue and then a degree of whiteness and blackness to mix into it",
  510. "specification": "https://www.w3.org/TR/css-color-4/#funcdef-hwb",
  511. "stage": 2,
  512. "docs": {
  513. "mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/hwb()"
  514. },
  515. "example": "p {\n color: hwb(120 44% 50%);\n}",
  516. "polyfills": [
  517. {
  518. "type": "PostCSS Plugin",
  519. "link": "https://github.com/postcss/postcss-color-hwb"
  520. }
  521. ]
  522. },
  523. {
  524. "id": "ic-unit",
  525. "title": "`ic` length unit",
  526. "description": "Equal to the used advance measure of the \"水\" (CJK water ideograph, U+6C34) glyph found in the font used to render it",
  527. "specification": "https://www.w3.org/TR/css-values-4/#ic",
  528. "stage": 2,
  529. "docs": {
  530. "mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Values_and_Units#dimensions"
  531. },
  532. "example": "p {\n text-indent: 2ic;\n}",
  533. "polyfills": [
  534. {
  535. "type": "PostCSS Plugin",
  536. "link": "https://github.com/JLHwung/postcss-ic-unit"
  537. }
  538. ]
  539. },
  540. {
  541. "id": "image-set-function",
  542. "title": "`image-set()` Function",
  543. "description": "A function for specifying image sources based on the user’s resolution",
  544. "specification": "https://www.w3.org/TR/css-images-4/#image-set-notation",
  545. "stage": 2,
  546. "caniuse": "css-image-set",
  547. "docs": {
  548. "mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/image-set"
  549. },
  550. "example": "p {\n background-image: image-set(\n \"foo.png\" 1x,\n \"foo-2x.png\" 2x,\n \"foo-print.png\" 600dpi\n );\n}",
  551. "polyfills": [
  552. {
  553. "type": "PostCSS Plugin",
  554. "link": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-image-set-function"
  555. }
  556. ]
  557. },
  558. {
  559. "id": "in-out-of-range-pseudo-class",
  560. "title": "`:in-range` and `:out-of-range` Pseudo-Classes",
  561. "description": "A pseudo-class for matching elements that have range limitations",
  562. "specification": "https://www.w3.org/TR/selectors-4/#range-pseudos",
  563. "stage": 2,
  564. "caniuse": "css-in-out-of-range",
  565. "docs": {
  566. "mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/:in-range"
  567. },
  568. "example": "input:in-range {\n background-color: rgba(0, 255, 0, 0.25);\n}\ninput:out-of-range {\n background-color: rgba(255, 0, 0, 0.25);\n border: 2px solid red;\n}"
  569. },
  570. {
  571. "id": "is-pseudo-class",
  572. "title": "`:is()` Matches-Any Pseudo-Class",
  573. "description": "A pseudo-class for matching elements in a selector list",
  574. "specification": "https://www.w3.org/TR/selectors-4/#matches-pseudo",
  575. "stage": 2,
  576. "caniuse": "css-matches-pseudo",
  577. "docs": {
  578. "mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/:is"
  579. },
  580. "example": "p:is(:first-child, .special) {\n margin-top: 1em;\n}"
  581. },
  582. {
  583. "id": "lab-function",
  584. "title": "`lab()` Function",
  585. "description": "A function for specifying colors expressed in the CIE Lab color space",
  586. "specification": "https://www.w3.org/TR/css-color-4/#funcdef-lab",
  587. "stage": 2,
  588. "caniuse": "css-lch-lab",
  589. "docs": {
  590. "mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/lab()"
  591. },
  592. "example": "body {\n color: lab(240 50 20);\n}",
  593. "polyfills": [
  594. {
  595. "type": "PostCSS Plugin",
  596. "link": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-lab-function"
  597. }
  598. ]
  599. },
  600. {
  601. "id": "lch-function",
  602. "title": "`lch()` Function",
  603. "description": "A function for specifying colors expressed in the CIE Lab color space with chroma and hue",
  604. "specification": "https://www.w3.org/TR/css-color-4/#funcdef-lch",
  605. "stage": 2,
  606. "caniuse": "css-lch-lab",
  607. "docs": {
  608. "mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/lch()"
  609. },
  610. "example": "body {\n color: lch(53 105 40);\n}",
  611. "polyfills": [
  612. {
  613. "type": "PostCSS Plugin",
  614. "link": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-lab-function"
  615. }
  616. ]
  617. },
  618. {
  619. "id": "logical-properties-and-values",
  620. "title": "Logical Properties and Values",
  621. "description": "Flow-relative (left-to-right or right-to-left) properties and values",
  622. "specification": "https://www.w3.org/TR/css-logical-1/",
  623. "stage": 2,
  624. "caniuse": "css-logical-props",
  625. "docs": {
  626. "mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Logical_Properties"
  627. },
  628. "example": "span:first-child {\n float: inline-start;\n margin-inline-start: 10px;\n}",
  629. "polyfills": [
  630. {
  631. "type": "PostCSS Plugin",
  632. "link": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-logical"
  633. }
  634. ]
  635. },
  636. {
  637. "id": "matches-pseudo-class",
  638. "title": "`:matches()` Matches-Any Pseudo-Class",
  639. "description": "A pseudo-class for matching elements in a selector list",
  640. "specification": "https://www.w3.org/TR/selectors-4/#selectordef-matches",
  641. "stage": -1,
  642. "caniuse": "css-matches-pseudo",
  643. "docs": {
  644. "mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/:is"
  645. },
  646. "example": "p:matches(:first-child, .special) {\n margin-top: 1em;\n}",
  647. "polyfills": [
  648. {
  649. "type": "PostCSS Plugin",
  650. "link": "https://github.com/postcss/postcss-selector-matches"
  651. }
  652. ]
  653. },
  654. {
  655. "id": "media-query-ranges",
  656. "title": "Media Query Ranges",
  657. "description": "A syntax for defining media query ranges using ordinary comparison operators",
  658. "specification": "https://www.w3.org/TR/mediaqueries-4/#range-context",
  659. "stage": 3,
  660. "docs": {
  661. "mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/Media_Queries/Using_media_queries#Syntax_improvements_in_Level_4"
  662. },
  663. "example": "@media (width < 480px) {}\n\n@media (480px <= width < 768px) {}\n\n@media (width >= 768px) {}",
  664. "polyfills": [
  665. {
  666. "type": "PostCSS Plugin",
  667. "link": "https://github.com/postcss/postcss-media-minmax"
  668. }
  669. ]
  670. },
  671. {
  672. "id": "nesting-rules",
  673. "title": "Nesting Rules",
  674. "description": "A syntax for nesting relative rules within rules",
  675. "specification": "https://drafts.csswg.org/css-nesting-1/",
  676. "stage": 1,
  677. "caniuse": "css-nesting",
  678. "example": "article {\n & p {\n color: #333;\n }\n}",
  679. "polyfills": [
  680. {
  681. "type": "PostCSS Plugin",
  682. "link": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-nesting"
  683. }
  684. ]
  685. },
  686. {
  687. "id": "not-pseudo-class",
  688. "title": "`:not()` Negation List Pseudo-Class",
  689. "description": "A pseudo-class for ignoring elements in a selector list",
  690. "specification": "https://www.w3.org/TR/selectors-4/#negation-pseudo",
  691. "stage": 2,
  692. "caniuse": "css-not-sel-list",
  693. "docs": {
  694. "mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/:not"
  695. },
  696. "example": "p:not(:first-child, .special) {\n margin-top: 1em;\n}",
  697. "polyfills": [
  698. {
  699. "type": "PostCSS Plugin",
  700. "link": "https://github.com/postcss/postcss-selector-not"
  701. }
  702. ]
  703. },
  704. {
  705. "id": "overflow-property",
  706. "title": "`overflow` Shorthand Property",
  707. "description": "A property for defining `overflow-x` and `overflow-y`",
  708. "specification": "https://www.w3.org/TR/css-overflow-3/#propdef-overflow",
  709. "stage": 2,
  710. "caniuse": "css-overflow",
  711. "caniuse-compat": {
  712. "and_chr": {
  713. "68": "y"
  714. },
  715. "and_ff": {
  716. "61": "y"
  717. },
  718. "chrome": {
  719. "68": "y"
  720. },
  721. "firefox": {
  722. "61": "y"
  723. }
  724. },
  725. "docs": {
  726. "mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/overflow"
  727. },
  728. "example": "html {\n overflow: hidden auto;\n}",
  729. "polyfills": [
  730. {
  731. "type": "PostCSS Plugin",
  732. "link": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-overflow-shorthand"
  733. }
  734. ]
  735. },
  736. {
  737. "id": "overflow-wrap-property",
  738. "title": "`overflow-wrap` Property",
  739. "description": "A property for defining whether to insert line breaks within words to prevent overflowing",
  740. "specification": "https://www.w3.org/TR/css-text-3/#overflow-wrap-property",
  741. "stage": 2,
  742. "caniuse": "wordwrap",
  743. "docs": {
  744. "mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/overflow-wrap"
  745. },
  746. "example": "p {\n overflow-wrap: break-word;\n}",
  747. "polyfills": [
  748. {
  749. "type": "PostCSS Plugin",
  750. "link": "https://github.com/mattdimu/postcss-replace-overflow-wrap"
  751. }
  752. ]
  753. },
  754. {
  755. "id": "overscroll-behavior-property",
  756. "title": "`overscroll-behavior` Property",
  757. "description": "Properties for controlling when the scroll position of a scroll container reaches the edge of a scrollport",
  758. "specification": "https://drafts.csswg.org/css-overscroll-behavior",
  759. "stage": 1,
  760. "caniuse": "css-overscroll-behavior",
  761. "docs": {
  762. "mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/overscroll-behavior"
  763. },
  764. "example": ".messages {\n height: 220px;\n overflow: auto;\n overscroll-behavior-y: contain;\n}\n\nbody {\n margin: 0;\n overscroll-behavior: none;\n}"
  765. },
  766. {
  767. "id": "place-properties",
  768. "title": "Place Properties",
  769. "description": "Properties for defining alignment within a layout",
  770. "specification": "https://www.w3.org/TR/css-align-3/#place-items-property",
  771. "stage": 2,
  772. "caniuse-compat": {
  773. "chrome": {
  774. "59": "y"
  775. },
  776. "firefox": {
  777. "45": "y"
  778. }
  779. },
  780. "docs": {
  781. "mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/place-content"
  782. },
  783. "example": ".example {\n place-content: flex-end;\n place-items: center / space-between;\n place-self: flex-start / center;\n}",
  784. "polyfills": [
  785. {
  786. "type": "PostCSS Plugin",
  787. "link": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-place"
  788. }
  789. ]
  790. },
  791. {
  792. "id": "prefers-color-scheme-query",
  793. "title": "`prefers-color-scheme` Media Query",
  794. "description": "A media query to detect if the user has requested the system use a light or dark color theme",
  795. "specification": "https://drafts.csswg.org/mediaqueries-5/#prefers-color-scheme",
  796. "stage": 1,
  797. "caniuse": "prefers-color-scheme",
  798. "docs": {
  799. "mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-color-scheme"
  800. },
  801. "example": "body {\n background-color: white;\n color: black;\n}\n\n@media (prefers-color-scheme: dark) {\n body {\n background-color: black;\n color: white;\n }\n}",
  802. "polyfills": [
  803. {
  804. "type": "JavaScript Library",
  805. "link": "https://github.com/csstools/postcss-plugins/tree/main/plugins/css-prefers-color-scheme"
  806. },
  807. {
  808. "type": "PostCSS Plugin",
  809. "link": "https://github.com/csstools/postcss-plugins/tree/main/plugins/css-prefers-color-scheme"
  810. }
  811. ]
  812. },
  813. {
  814. "id": "prefers-reduced-motion-query",
  815. "title": "`prefers-reduced-motion` Media Query",
  816. "description": "A media query to detect if the user has requested less animation and general motion on the page",
  817. "specification": "https://drafts.csswg.org/mediaqueries-5/#prefers-reduced-motion",
  818. "stage": 1,
  819. "caniuse": "prefers-reduced-motion",
  820. "docs": {
  821. "mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-reduced-motion"
  822. },
  823. "example": ".animation {\n animation: vibrate 0.3s linear infinite both; \n}\n\n@media (prefers-reduced-motion: reduce) {\n .animation {\n animation: none;\n }\n}"
  824. },
  825. {
  826. "id": "read-only-write-pseudo-class",
  827. "title": "`:read-only` and `:read-write` selectors",
  828. "description": "Pseudo-classes to match elements which are considered user-alterable",
  829. "specification": "https://www.w3.org/TR/selectors-4/#rw-pseudos",
  830. "stage": 2,
  831. "caniuse": "css-read-only-write",
  832. "docs": {
  833. "mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/:read-only"
  834. },
  835. "example": "input:read-only {\n background-color: #ccc;\n}"
  836. },
  837. {
  838. "id": "rebeccapurple-color",
  839. "title": "`rebeccapurple` Color",
  840. "description": "A particularly lovely shade of purple in memory of Rebecca Alison Meyer",
  841. "specification": "https://www.w3.org/TR/css-color-4/#valdef-color-rebeccapurple",
  842. "stage": 2,
  843. "caniuse": "css-rebeccapurple",
  844. "docs": {
  845. "mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/color_value"
  846. },
  847. "example": "html {\n color: rebeccapurple;\n}",
  848. "polyfills": [
  849. {
  850. "type": "PostCSS Plugin",
  851. "link": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-rebeccapurple"
  852. }
  853. ]
  854. },
  855. {
  856. "id": "system-ui-font-family",
  857. "title": "`system-ui` Font Family",
  858. "description": "A generic font used to match the user’s interface",
  859. "specification": "https://www.w3.org/TR/css-fonts-4/#system-ui-def",
  860. "stage": 2,
  861. "caniuse": "font-family-system-ui",
  862. "docs": {
  863. "mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/font-family#Syntax"
  864. },
  865. "example": "body {\n font-family: system-ui;\n}",
  866. "polyfills": [
  867. {
  868. "type": "PostCSS Plugin",
  869. "link": "https://github.com/JLHwung/postcss-font-family-system-ui"
  870. }
  871. ]
  872. },
  873. {
  874. "id": "when-else-rules",
  875. "title": "When/Else Rules",
  876. "description": "At-rules for specifying media queries and support queries in a single grammar",
  877. "specification": "https://tabatkins.github.io/specs/css-when-else/",
  878. "stage": 0,
  879. "example": "@when media(width >= 640px) and (supports(display: flex) or supports(display: grid)) {\n /* A */\n} @else media(pointer: coarse) {\n /* B */\n} @else {\n /* C */\n}"
  880. },
  881. {
  882. "id": "where-pseudo-class",
  883. "title": "`:where()` Zero-Specificity Pseudo-Class",
  884. "description": "A pseudo-class for matching elements in a selector list without contributing specificity",
  885. "specification": "https://drafts.csswg.org/selectors-4/#where-pseudo",
  886. "stage": 1,
  887. "docs": {
  888. "mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/:where"
  889. },
  890. "example": "a:where(:not(:hover)) {\n text-decoration: none;\n}"
  891. }
  892. ]