1.1.5 • Published 7 years ago

postcss-overflow v1.1.5

Weekly downloads
292
License
MIT
Repository
github
Last release
7 years ago

PostCSS Overflow

PostCSS plugin for overflow shortcut to set overflow-x and overflow-y properties.

Build Status npm-img

/* before */

.two {
    overflow: hidden auto;
}
.one {
    overflow: auto;
}
* {
    overflow: * auto;
}

/* after */

.two {
    overflow-x: hidden;
    overflow-y: auto;
}
.one {
    overflow: auto;
}
* {
    overflow-y: auto;
}

Install

npm i postcss-overflow

Usage

postcss([ require('postcss-overflow') ])

forked from postcss/postcss-size , thanks.

See PostCSS docs for examples for your environment.