Security News
Internet Archive Hacked, 31 Million Record Compromised
The Internet Archive's "Wayback Machine" has been hacked and defaced, with 31 millions records compromised.
@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 2,408,836 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 Internet Archive's "Wayback Machine" has been hacked and defaced, with 31 millions records compromised.
Security News
TC39 is meeting in Tokyo this week and they have approved nearly a dozen proposals to advance to the next stages.
Security News
Our threat research team breaks down two malicious npm packages designed to exploit developer trust, steal your data, and destroy data on your machine.