Last updated 3 years ago
Was this helpful?
plugin to replace overflow-wrap with word-wrap. May optionally retain both declarations.
See docs for examples for your environment.
/* default usage, with no options (method = replace) */ postcss([ require('postcss-replace-overflow-wrap') ])
/* add word-wrap, but keep overflow-wrap */ postcss([ require('postcss-replace-overflow-wrap') ])({ method: 'copy' })
/* before */ .foo { overflow-wrap: break-word; } /* after */ .foo { word-wrap: break-word; }
/* before, when the option { method: 'copy' } is passed */ .foo { overflow-wrap: break-word; } /* after */ .foo { word-wrap: break-word; overflow-wrap: break-word; }