postcss-overflow-shorthand
TypeScript icon, indicating that this package has built-in type declarations

5.0.1 • Public • Published

PostCSS Overflow Shorthand PostCSS Logo

npm version CSS Standard Status Build Status Discord

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

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

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 5.0.1
    466,474
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 5.0.1
    466,474
  • 5.0.0
    224,114
  • 4.0.1
    248,498
  • 4.0.0
    2,516
  • 3.0.4
    2,827,887
  • 3.0.3
    295,847
  • 3.0.2
    36,037
  • 3.0.1
    20,379
  • 3.0.0
    4,117
  • 2.0.0
    1,776,823
  • 1.0.1
    4,611
  • 1.0.0
    2

Package Sidebar

Install

npm i postcss-overflow-shorthand

Weekly Downloads

4,779,833

Version

5.0.1

License

MIT-0

Unpacked Size

7.15 kB

Total Files

7

Last publish

Collaborators

  • romainmenke
  • alaguna
  • jonathantneal