32.1 GB
673,093 files
Updated 5 months ago
Name
Size
dist
CHANGELOG.md278 Bytes
xet
LICENSE.md6.8 kB
xet
README.md2.82 kB
xet
package.json2.06 kB
xet
README.md

PostCSS Unset Value PostCSS Logo

npm version CSS Standard Status Build Status Discord

PostCSS Unset Value lets you use the unset keyword, following the CSS Cascading and Inheritance specification.

.color {
    color: unset;
}

.border-color {
    border-color: unset;
}

.margin {
    margin: unset;
}


/* becomes */
.color {
    color: inherit;
}

.border-color {
    border-color: initial;
}

.margin {
    margin: initial;
}

Usage

Add PostCSS Unset Value to your project:

npm install postcss @csstools/postcss-unset-value --save-dev

Use it as a PostCSS plugin:

const postcss = require('postcss');
const postcssUnsetValue = require('@csstools/postcss-unset-value');

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

PostCSS Unset Value runs in all Node environments, with special instructions for:

Options

preserve

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

postcssUnsetValue({ preserve: true })
.color {
    color: unset;
}

.border-color {
    border-color: unset;
}

.margin {
    margin: unset;
}

/* becomes */

.color {
    color: inherit;
    color: unset;
}

.border-color {
    border-color: initial;
    border-color: unset;
}

.margin {
    margin: initial;
    margin: unset;
}
Total size
32.1 GB
Files
673,093
Last updated
Mar 19
Pre-warmed CDN
US EU US EU

Contributors