# @csstools/postcss-position-area-property

> Fallback `position-area` to the alternate name `inset-area`

Latest version **2.0.0** (published 2026-01-14) · MIT-0 license · 0 weekly downloads

## Install

```sh
npm install @csstools/postcss-position-area-property
pnpm add @csstools/postcss-position-area-property
yarn add @csstools/postcss-position-area-property
bun add @csstools/postcss-position-area-property
```

## Health

**Score 50/100 (C)** — status: stable.

Positive: esm support; no vulnerabilities.

Warnings: low downloads; no types.

## Facts

| | |
|---|---|
| Version | 2.0.0 |
| Published | 2026-01-14 |
| First published | 2025-12-03 |
| Weekly downloads | 0 |
| License | MIT-0 |
| TypeScript types | none |
| Module format | ESM |
| Node | >=20.19.0 |
| Dependencies | 0 |
| Unpacked size | 4.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | jonathantneal, alaguna, romainmenke |
| Keywords | postcss-plugin |

## Links

- npm: https://www.npmjs.com/package/@csstools/postcss-position-area-property
- Repository: https://github.com/csstools/postcss-plugins
- Homepage: https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-position-area-property#readme
- Issues: https://github.com/csstools/postcss-plugins/issues
- Funding: https://github.com/sponsors/csstools
- npm.io page: https://npm.io/package/@csstools/postcss-position-area-property

## Recent versions

- 2.0.0 (latest) — 2026-01-14
- 1.0.0 — 2025-12-03

## README

# PostCSS Position Area Property [<img src="https://postcss.github.io/postcss/logo.svg" alt="PostCSS Logo" width="90" height="90" align="right">][PostCSS]

`npm install @csstools/postcss-position-area-property --save-dev`

[PostCSS Position Area Property] lets you fallback `position-area` to the alternate name `inset-area` following the [CSS Specification].

```css
.foo {
	position-area: start;
}

/* becomes */

.foo {
	inset-area: start;
	position-area: start;
}
```

## Usage

Add [PostCSS Position Area Property] to your project:

```bash
npm install postcss @csstools/postcss-position-area-property --save-dev
```

Use it as a [PostCSS] plugin:

```js
const postcss = require('postcss');
const postcssPositionAreaProperty = require('@csstools/postcss-position-area-property');

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



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

[PostCSS]: https://github.com/postcss/postcss
[PostCSS Position Area Property]: https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-position-area-property
[CSS Specification]: https://drafts.csswg.org/css-anchor-position/#position-area

---
_Source: https://npm.io/package/@csstools/postcss-position-area-property · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
