cssminify icon indicating copy to clipboard operation
cssminify copied to clipboard

Fix some minification errors related to zero value replacements

Open lastikas opened this issue 9 years ago • 0 comments

Taking the following CSS @keyframe anim { 0% { opacity: 0; } 100% { opacity: 1; } } The output will be incorrectly rewritten to: @keyframe anim { 0 { opacity: 0; } 100% { opacity: 1; } }

This fix was introduced to YUI in pull request #231. I simply applied it to this port

For more information please visit: https://github.com/yui/yuicompressor/pull/231#issue-124952655

lastikas avatar Aug 02 '16 17:08 lastikas