
Product
Introducing Scala and Kotlin Support in Socket
Socket now supports Scala and Kotlin, bringing AI-powered threat detection to JVM projects with easy manifest generation and fast, accurate scans.
postcss-normalize-whitespace
Advanced tools
Trim whitespace inside and around CSS rules & declarations.
The postcss-normalize-whitespace npm package is a PostCSS plugin designed to normalize and minimize the whitespace in your CSS. It helps in reducing the file size and improving the readability of the CSS by consistently formatting the whitespace.
Minifying CSS
This feature allows you to compress your CSS by removing unnecessary whitespace, which can include spaces, tabs, and newlines that are not required for the CSS to function properly.
const postcss = require('postcss');
const normalizeWhitespace = require('postcss-normalize-whitespace');
postcss([normalizeWhitespace]).process('h1 { color: red; }').then(result => {
console.log(result.css); // Output: 'h1{color:red}'
});
cssnano is a modular minifier that includes various optimizations, including whitespace normalization. It is more comprehensive than postcss-normalize-whitespace as it provides a wide range of optimizations beyond just whitespace normalization.
clean-css is another powerful CSS minifier that offers advanced optimizations. It can perform many transformations to reduce CSS size, including whitespace normalization. It is similar to cssnano in its broad scope of features.
uglifycss is a simple tool for CSS minification that also includes whitespace normalization. It is less modular than cssnano and focuses on providing a straightforward solution for CSS compression.
Normalize whitespace with PostCSS.
With npm do:
npm install postcss-normalize-whitespace --save
h1{
width: calc(10px - ( 100px / var(--test) ))
}
h1{
width: calc(10px - 100px / var(--test))
}
See the PostCSS documentation for examples for your environment.
See CONTRIBUTORS.md.
MIT © Ben Briggs
FAQs
Trim whitespace inside and around CSS rules & declarations.
The npm package postcss-normalize-whitespace receives a total of 7,377,416 weekly downloads. As such, postcss-normalize-whitespace popularity was classified as popular.
We found that postcss-normalize-whitespace demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 7 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.
Product
Socket now supports Scala and Kotlin, bringing AI-powered threat detection to JVM projects with easy manifest generation and fast, accurate scans.
Application Security
/Security News
Socket CEO Feross Aboukhadijeh and a16z partner Joel de la Garza discuss vibe coding, AI-driven software development, and how the rise of LLMs, despite their risks, still points toward a more secure and innovative future.
Research
/Security News
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.