trullock / NUglify

NUglify is a HTML, JavaScript and CSS minification Library for .NET (fork of AjaxMin + new features)
Other
398 stars 79 forks source link

"border: 0 none;" is optimized with invalid css #343

Closed failwyn closed 1 year ago

failwyn commented 1 year ago

border: 0 none; is minified to border: 0 0; 0 is not a valid value for border-style. This appears to be a side effect of the optimization added to fix #317

Minified output or stack trace border: 0 0;

Excepted output code border: 0 none;

trullock commented 1 year ago

feel free to make a PR that reverses #317 and we can reopen that with this in mind, or make the PR to fix this :)