JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 5940361
  • Score
    100M100P100Q237874F
  • License CC0-1.0

Use the overflow shorthand in CSS

Package Exports

  • postcss-overflow-shorthand

Readme

PostCSS Overflow Shorthand PostCSS Logo

npm version CSS Standard Status Build Status Discord

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 */);

PostCSS Overflow Shorthand runs in all Node environments, with special instructions for:

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;
}