Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

postcss-overflow-shorthand

csstools17.2mMIT-06.0.0TypeScript support: included

Use the overflow shorthand in CSS

css, overflow, postcss, postcss-plugin, properties, shorthands, values

readme

PostCSS Overflow Shorthand PostCSS Logo

npm install postcss-overflow-shorthand --save-dev

PostCSS Overflow Shorthand lets you use the overflow shorthand in CSS, following the CSS Overflow specification.

html {
    overflow: hidden auto;
}

/* becomes */

html {
    overflow-x: hidden;
    overflow-y: auto;
    overflow: hidden auto;
}

Usage

Add PostCSS Overflow Shorthand to your project:

npm install postcss postcss-overflow-shorthand --save-dev

Use it as a PostCSS plugin:

const postcss = require('postcss');
const postcssOverflowShorthand = require('postcss-overflow-shorthand');

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

Options

preserve

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

postcssOverflowShorthand({ preserve: false })
html {
    overflow: hidden auto;
}

/* becomes */

html {
    overflow-x: hidden;
    overflow-y: auto;
}

changelog

Changes to PostCSS Overflow Shorthand

6.0.0

August 3, 2024

  • Updated: Support for Node v18+ (major).

Full CHANGELOG