Skip to content

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

License

Notifications You must be signed in to change notification settings

TheSisb/postcss-overflow-ellipsis

Repository files navigation

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.

About

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published