PromoCursed/node_modules/@csstools/postcss-text-decoration-shorthand
2024-08-20 23:25:37 +04:00
..
dist Первый коммит 2024-08-20 23:25:37 +04:00
CHANGELOG.md Первый коммит 2024-08-20 23:25:37 +04:00
LICENSE.md Первый коммит 2024-08-20 23:25:37 +04:00
package.json Первый коммит 2024-08-20 23:25:37 +04:00
README.md Первый коммит 2024-08-20 23:25:37 +04:00

PostCSS Text Decoration Shorthand PostCSS Logo

npm version CSS Standard Status Build Status Discord

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);
}

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 */);

PostCSS Text Decoration Shorthand runs in all Node environments, with special instructions for:

Node PostCSS CLI Webpack Create React App Gulp Grunt

Options

preserve

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

postcssTextDecorationShorthand({ preserve: true })
.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%;
}