
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
@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.
The npm package @csstools/postcss-normalize-display-values receives a total of 3,048,343 weekly downloads. As such, @csstools/postcss-normalize-display-values popularity was classified as popular.
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
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.