1.0.0 • Published 7 years ago

postcss-overflow-ellipsis v1.0.0

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

PostCSS Overflow Ellipsis Build Status

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.