Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

postcss-overflow-ellipsis

TheSisb5MIT1.0.0

PostCSS plugin to convert shorthand 'overflow: ellipsis' into the appropriate rules

postcss, css, postcss-plugin, nib

readme

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.