postcss-overflow-ellipsis
v1.0.0
Published
PostCSS plugin to convert shorthand 'overflow: ellipsis' into the appropriate rules
Downloads
8
Readme
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.