|
|
3 years ago | |
|---|---|---|
| .. | ||
| CHANGELOG.md | 3 years ago | |
| LICENSE.md | 3 years ago | |
| README.md | 3 years ago | |
| index.cjs.js | 3 years ago | |
| index.cjs.js.map | 3 years ago | |
| index.es.mjs | 3 years ago | |
| index.es.mjs.map | 3 years ago | |
| package.json | 3 years ago | |
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;
}
Add PostCSS Overflow Shorthand to your project:
npm install postcss-overflow-shorthand --save-dev
Use PostCSS Overflow Shorthand to process your CSS:
const postcssOverflowShorthand = require('postcss-overflow-shorthand');
postcssOverflowShorthand.process(YOUR_CSS /*, processOptions, pluginOptions */);
Or 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:
| Node | PostCSS CLI | Webpack | Create React App | Gulp | Grunt |
|---|
The preserve option determines whether the original overflow declaration is
preserved. By default, it is preserved.
postcssOverflowShorthand({ preserve: false })
html {
overflow: hidden auto;
}
/* becomes */
html {
overflow-x: hidden;
overflow-y: auto;
}