matthiasmullie / minify

CSS & JavaScript minifier, in PHP. Removes whitespace, strips comments, combines files (incl. @import statements and small assets in CSS files), and optimizes/shortens a few common programming patterns.
https://matthiasmullie.github.io/minify/
MIT License
1.96k stars 310 forks source link

CSS variable value 0px has the px removed and breaks #397

Closed simondud closed 2 years ago

simondud commented 2 years ago

Code to reproduce:

.stk-block-columns>.stk-block-content{--stk-column-gap:0px;column-gap:var(--stk-column-gap,0)}

Yelds:

.stk-block-columns>.stk-block-content{--stk-column-gap:0;column-gap:var(--stk-column-gap,0)}

Expected:

.stk-block-columns>.stk-block-content{--stk-column-gap:0px;column-gap:var(--stk-column-gap,0)}