postcss-overflow-ellipsis
1.0.0 • Public • Published PostCSS Overflow Ellipsis 
PostCSS plugin to convert shorthand 'overflow: ellipsis' into the appropriate rules.
.foo {
overflow: ellipsis;
}
.foo {
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
Usage
postcss([ require('postcss-overflow-ellipsis') ])
See PostCSS docs for examples for your environment.
Package Sidebar
Install
npm i postcss-overflow-ellipsis
Weekly Downloads