
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
@csstools/postcss-normalize-display-values
Advanced tools
Use two values display syntax for inner and outer display types.
PostCSS Normalize Display Values lets you specify definition of outer and inner displays types for an element.
.element {
display: inline flow-root;
}
/* becomes */
.element {
display: inline-block;
display: inline flow-root;
}
See prior work by cssnano here postcss-normalize-display-values To ensure long term maintenance and to provide the needed features this plugin was recreated based on cssnano's work.
Add PostCSS Normalize Display Values to your project:
npm install postcss @csstools/postcss-normalize-display-values --save-dev
Use it as a PostCSS plugin:
const postcss = require('postcss');
const postcssNormalizeDisplayValues = require('@csstools/postcss-normalize-display-values');
postcss([
postcssNormalizeDisplayValues(/* pluginOptions */)
]).process(YOUR_CSS /*, processOptions */);
PostCSS Normalize Display Values runs in all Node environments, with special instructions for:
Node | PostCSS CLI | Webpack | Gulp | Grunt |
---|
The preserve
option determines whether the original source
is preserved. By default, it is preserved.
postcssNormalizeDisplayValues({ preserve: false })
.element {
display: inline flow-root;
}
/* becomes */
.element {
display: inline-block;
}
FAQs
Use two values display syntax for inner and outer display types.
We found that @csstools/postcss-normalize-display-values demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.