Skip to content

Commit ec3fda7

Browse files
committed
8.9.0
1 parent 31a1686 commit ec3fda7

6 files changed

Lines changed: 126 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changes to cssdb
22

3+
### 8.9.0 (May 13, 2026)
4+
5+
- Added `container-rule-prelude-list`
6+
- Added `image-function`
7+
38
### 8.8.1 (May 10, 2026)
49

510
- Updated `@mdn/browser-compat-data` to `7.3.13`

cssdb.json

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -472,6 +472,23 @@
472472
"vendors_implementations": 3,
473473
"web-feature": "container-queries"
474474
},
475+
{
476+
"id": "container-rule-prelude-list",
477+
"title": "`@container` prelude list",
478+
"description": "Declare a list of container queries in a single `@container` rule",
479+
"specification": "https://drafts.csswg.org/css-conditional-5/#container-rule",
480+
"stage": 2,
481+
"browser_support": {},
482+
"docs": {},
483+
"example": "@container card (inline-size > 30em), style(--responsive: true) {\n /* styles */\n}",
484+
"polyfills": [
485+
{
486+
"type": "PostCSS Plugin",
487+
"link": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-container-rule-prelude-list"
488+
}
489+
],
490+
"vendors_implementations": 0
491+
},
475492
{
476493
"id": "content-alt-text",
477494
"title": "Alt text for `content`",
@@ -520,6 +537,7 @@
520537
"edge": "147",
521538
"firefox": "146",
522539
"ios_saf": "26",
540+
"op_mob": "98",
523541
"opera": "131",
524542
"safari": "26",
525543
"webview_ios": "26"
@@ -1237,6 +1255,23 @@
12371255
"vendors_implementations": 3,
12381256
"web-feature": "ic"
12391257
},
1258+
{
1259+
"id": "image-function",
1260+
"title": "`image()` Function",
1261+
"description": "Generate a solid-color image from any color.",
1262+
"specification": "https://drafts.csswg.org/css-images-4/#funcdef-image",
1263+
"stage": 2,
1264+
"browser_support": {},
1265+
"docs": {},
1266+
"example": "div {\n background-image: image( purple );\n}",
1267+
"polyfills": [
1268+
{
1269+
"type": "PostCSS Plugin",
1270+
"link": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-image-function"
1271+
}
1272+
],
1273+
"vendors_implementations": 0
1274+
},
12401275
{
12411276
"id": "image-set-function",
12421277
"title": "`image-set()` Function",

cssdb.mjs

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -472,6 +472,23 @@ export default [
472472
"vendors_implementations": 3,
473473
"web-feature": "container-queries"
474474
},
475+
{
476+
"id": "container-rule-prelude-list",
477+
"title": "`@container` prelude list",
478+
"description": "Declare a list of container queries in a single `@container` rule",
479+
"specification": "https://drafts.csswg.org/css-conditional-5/#container-rule",
480+
"stage": 2,
481+
"browser_support": {},
482+
"docs": {},
483+
"example": "@container card (inline-size > 30em), style(--responsive: true) {\n /* styles */\n}",
484+
"polyfills": [
485+
{
486+
"type": "PostCSS Plugin",
487+
"link": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-container-rule-prelude-list"
488+
}
489+
],
490+
"vendors_implementations": 0
491+
},
475492
{
476493
"id": "content-alt-text",
477494
"title": "Alt text for `content`",
@@ -520,6 +537,7 @@ export default [
520537
"edge": "147",
521538
"firefox": "146",
522539
"ios_saf": "26",
540+
"op_mob": "98",
523541
"opera": "131",
524542
"safari": "26",
525543
"webview_ios": "26"
@@ -1237,6 +1255,23 @@ export default [
12371255
"vendors_implementations": 3,
12381256
"web-feature": "ic"
12391257
},
1258+
{
1259+
"id": "image-function",
1260+
"title": "`image()` Function",
1261+
"description": "Generate a solid-color image from any color.",
1262+
"specification": "https://drafts.csswg.org/css-images-4/#funcdef-image",
1263+
"stage": 2,
1264+
"browser_support": {},
1265+
"docs": {},
1266+
"example": "div {\n background-image: image( purple );\n}",
1267+
"polyfills": [
1268+
{
1269+
"type": "PostCSS Plugin",
1270+
"link": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-image-function"
1271+
}
1272+
],
1273+
"vendors_implementations": 0
1274+
},
12401275
{
12411276
"id": "image-set-function",
12421277
"title": "`image-set()` Function",

cssdb.settings.json

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -317,6 +317,23 @@
317317
}
318318
]
319319
},
320+
{
321+
"id": "container-rule-prelude-list",
322+
"title": "`@container` prelude list",
323+
"description": "Declare a list of container queries in a single `@container` rule",
324+
"specification": "https://drafts.csswg.org/css-conditional-5/#container-rule",
325+
"stage": 2,
326+
"browser_support": {},
327+
"docs": {},
328+
"example": "@container card (inline-size > 30em), style(--responsive: true) {\n /* styles */\n}",
329+
"mdn_path": [],
330+
"polyfills": [
331+
{
332+
"type": "PostCSS Plugin",
333+
"link": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-container-rule-prelude-list"
334+
}
335+
]
336+
},
320337
{
321338
"id": "content-alt-text",
322339
"title": "Alt text for `content`",
@@ -846,6 +863,23 @@
846863
}
847864
]
848865
},
866+
{
867+
"id": "image-function",
868+
"title": "`image()` Function",
869+
"description": "Generate a solid-color image from any color.",
870+
"specification": "https://drafts.csswg.org/css-images-4/#funcdef-image",
871+
"stage": 2,
872+
"browser_support": {},
873+
"docs": {},
874+
"example": "div {\n background-image: image( purple );\n}",
875+
"mdn_path": [],
876+
"polyfills": [
877+
{
878+
"type": "PostCSS Plugin",
879+
"link": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-image-function"
880+
}
881+
]
882+
},
849883
{
850884
"id": "image-set-function",
851885
"title": "`image-set()` Function",

package-lock.json

Lines changed: 15 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cssdb",
3-
"version": "8.8.1",
3+
"version": "8.9.0",
44
"type": "module",
55
"description": "A list of CSS features and their positions in the process of becoming implemented web standards",
66
"license": "MIT-0",
@@ -61,7 +61,7 @@
6161
"test:doc-links": "node tasks/check-doc-links.mjs"
6262
},
6363
"devDependencies": {
64-
"@mdn/browser-compat-data": "^7.3.14",
64+
"@mdn/browser-compat-data": "^7.3.15",
6565
"browserslist": "^4.28.2",
6666
"glob": "^13.0.1",
6767
"postcss": "^8.5.13",

0 commit comments

Comments
 (0)