# @csstools/postcss-container-rule-prelude-list

> Declare a list of container queries in a single at-container rule

Latest version **1.0.1** (published 2026-05-13) · MIT-0 license · 0 weekly downloads

## Install

```sh
npm install @csstools/postcss-container-rule-prelude-list
pnpm add @csstools/postcss-container-rule-prelude-list
yarn add @csstools/postcss-container-rule-prelude-list
bun add @csstools/postcss-container-rule-prelude-list
```

## Health

**Score 55/100 (C)** — status: active.

Positive: esm support; no vulnerabilities; high maintenance score.

Warnings: low downloads; no types.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2026-05-13 |
| First published | 2026-05-13 |
| Weekly downloads | 0 |
| License | MIT-0 |
| TypeScript types | none |
| Module format | ESM |
| Node | >=20.19.0 |
| Dependencies | 2 |
| Unpacked size | 5.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1052 |
| Maintainers | jonathantneal, alaguna, romainmenke |
| Keywords | container queries list, csswg, fallback, postcss-plugin |

## Links

- npm: https://www.npmjs.com/package/@csstools/postcss-container-rule-prelude-list
- Repository: https://github.com/csstools/postcss-plugins
- Homepage: https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-container-rule-prelude-list#readme
- Issues: https://github.com/csstools/postcss-plugins/issues
- Funding: https://github.com/sponsors/csstools
- npm.io page: https://npm.io/package/@csstools/postcss-container-rule-prelude-list

## Dependencies (2)

- [@csstools/css-tokenizer](https://npm.io/package/@csstools/css-tokenizer.md) ^4.0.0
- [@csstools/css-parser-algorithms](https://npm.io/package/@csstools/css-parser-algorithms.md) ^4.0.0

## Recent versions

- 1.0.1 (latest) — 2026-05-13
- 1.0.0 — 2026-05-13

## README

# PostCSS Container Rule Prelude List [<img src="https://postcss.github.io/postcss/logo.svg" alt="PostCSS Logo" width="90" height="90" align="right">][PostCSS]

`npm install @csstools/postcss-container-rule-prelude-list --save-dev`

[PostCSS Container Rule Prelude List] lets you declare a list of container queries in a single `@container` rule following the [CSS Conditional 5 Specification].

```css
@container card (inline-size > 30em), style(--responsive: true) {
	a {
		color: red;
	}
}

/* becomes */

@container card (inline-size > 30em) {
	a {
		color: red;
	}
}
@container style(--responsive: true) {
	a {
		color: red;
	}
}
```

## Usage

Add [PostCSS Container Rule Prelude List] to your project:

```bash
npm install postcss @csstools/postcss-container-rule-prelude-list --save-dev
```

Use it as a [PostCSS] plugin:

```js
const postcss = require('postcss');
const postcssContainerRulePreludeList = require('@csstools/postcss-container-rule-prelude-list');

postcss([
	postcssContainerRulePreludeList(/* pluginOptions */)
]).process(YOUR_CSS /*, processOptions */);
```



## Options

### preserve

The `preserve` option determines whether the original notation
is preserved. By default, it is not preserved.

```js
postcssContainerRulePreludeList({ preserve: true })
```

```css
@container card (inline-size > 30em), style(--responsive: true) {
	a {
		color: red;
	}
}

/* becomes */

@container card (inline-size > 30em) {
	a {
		color: red;
	}
}
@container style(--responsive: true) {
	a {
		color: red;
	}
}
@container card (inline-size > 30em), style(--responsive: true) {
	a {
		color: red;
	}
}
```

[cli-url]: https://github.com/csstools/postcss-plugins/actions/workflows/test.yml?query=workflow/test
[css-url]: https://cssdb.org/#container-rule-prelude-list
[discord]: https://discord.gg/bUadyRwkJS
[npm-url]: https://www.npmjs.com/package/@csstools/postcss-container-rule-prelude-list

[PostCSS]: https://github.com/postcss/postcss
[PostCSS Container Rule Prelude List]: https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-container-rule-prelude-list
[CSS Conditional 5 Specification]: https://drafts.csswg.org/css-conditional-5/#container-rule

---
_Source: https://npm.io/package/@csstools/postcss-container-rule-prelude-list · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
