4.0.1 • Published 11 months ago
@csstools/postcss-text-decoration-shorthand v4.0.1
PostCSS Text Decoration Shorthand
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);
}
3.0.7
1 year ago
4.0.1
11 months ago
4.0.0
11 months ago
3.0.6
1 year ago
3.0.5
1 year ago
3.0.4
2 years ago
3.0.3
2 years ago
3.0.2
2 years ago
3.0.1
2 years ago
3.0.0
2 years ago
2.2.4
2 years ago
2.2.3
2 years ago
2.2.2
2 years ago
2.2.1
2 years ago
2.2.0
2 years ago
2.1.0
2 years ago
2.0.1
2 years ago
2.0.0
2 years ago
1.0.0
3 years ago