Détail du package

@csstools/postcss-text-decoration-shorthand

csstools17.6mMIT-04.0.2

Use text-decoration in it's shorthand form in CSS

css, postcss-plugin, shorthand, text-decoration

readme

PostCSS Text Decoration Shorthand PostCSS Logo

npm install @csstools/postcss-text-decoration-shorthand --save-dev

PostCSS Text Decoration Shorthand lets you use text-decoration as a shorthand following the Text Decoration Specification.

.example {
    text-decoration: wavy underline purple 25%;
}

/* becomes */

.example {
    text-decoration: underline;
    text-decoration: underline wavy purple;
    text-decoration-thickness: calc(0.01em * 25);
    text-decoration: wavy underline purple 25%;
}

Usage

Add PostCSS Text Decoration Shorthand to your project:

npm install postcss @csstools/postcss-text-decoration-shorthand --save-dev

Use it as a PostCSS plugin:

const postcss = require('postcss');
const postcssTextDecorationShorthand = require('@csstools/postcss-text-decoration-shorthand');

postcss([
    postcssTextDecorationShorthand(/* pluginOptions */)
]).process(YOUR_CSS /*, processOptions */);

Options

preserve

The preserve option determines whether the original notation is preserved. By default, it is preserved.

postcssTextDecorationShorthand({ preserve: false })
.example {
    text-decoration: wavy underline purple 25%;
}

/* becomes */

.example {
    text-decoration: underline;
    text-decoration: underline wavy purple;
    text-decoration-thickness: calc(0.01em * 25);
}

changelog