
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
webpack-css-utils
Advanced tools
Webpack loader and plugin to generate and inject CSS utilities to your apps
Webpack plugin to generate and inject CSS utilities to your application.
All you have to do is specify utility classes on any DOM elements and webpack will generate and inject the CSS into your app.
For example, if you want to add bottom margin of 20px to a link, you can do that
<a href="/" class="logo mb20">I have bottom margin</a>
<p>Here is some text having some <span class="fw600">important bold information</span> in it.</p>
Currently supported formuals are listed below.
| Formula | CSS Property | Example Usage |
|---|---|---|
p | padding | p10 will translate to padding: 10px |
pt | padding-top | pt20 will translate to padding-top: 20px; |
pb | padding-bottom | pb10 will translate to padding-bottom: 10px; |
pr | padding-right | pr20 will translate to padding-right: 20px; |
pl | padding-left | pl23 will translate to padding-left: 23px; |
m | margin | m20 will translate to margin: 20px |
mt | margin-top | mt20 will translate to margin-top: 20px; |
mb | margin-bottom | mb20 will translate to margin-bottom: 20px; |
ml | margin-left | ml50 will translate to margin-left: 50px; |
mr | margin-right | mr30 will translate to margin-right: 30px; |
w | width | w200 will translate to width: 200px |
h | height | h60 will translate to height: 60px; |
br | border-radius | br5 will translate to border-radius: 5px; |
fs | font-size | fs15 will translate to font-size: 15px |
fw | font-weight | fw400 will translate to font-weight: 400px |
lh | line-height | lh20em will translate to line-height: 20em |
t | top | t6 will translate to top: 6px; |
l | left | l30 will translate to left: 30px |
b | bottom | b20em will translate to bottom: 20em; |
r | right | r20em will translate to right: 20em; |
Install the plugin using npm or yarn
npm install webpack-css-utils --save-dev
yarn add webpack-css-utils --dev
Add the loader to module.rules in your webpack configuration
const CssUtils = require('webpack-css-utils');
// ...
module: {
// Add the loader in the loader's list
// it can handle HTML as well as JSX files
rules: [
// ...
{
test: /\.js$/,
exclude: /node_modules/,
use: CssUtils.Loader
}
]
},
// ...
plugins: [
// Add the plugin right after html-webpack-plugin
// new HtmlWebpackPlugin(..), // <-- You must have it installed and set up
new CssUtils.Plugin(),
]
// ...
All the default CSS units are supported. You can specify it and relevant CSS unit will be used
px, pt, em, p, vh, vw, vmin, ex, cm, in, mm, pc will translate to the same unit in CSSpx will be used% specify it as p e.g. w50p will get translated to width: 50%n e.g. fw600n will translate to font-weight: 600MIT © Kamran Ahmed
FAQs
Webpack loader and plugin to generate and inject CSS utilities to your apps
The npm package webpack-css-utils receives a total of 1 weekly downloads. As such, webpack-css-utils popularity was classified as not popular.
We found that webpack-css-utils demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.