Given this CSS: ```css body { padding: 10px 10px 10px 10px; } ``` I would expect this optimized output: ```css body{padding:10px} ``` But the four same pixel values are not compacted to one. I tried setting the various options with no luck. Maybe add this optimization?
Given this CSS:
I would expect this optimized output:
But the four same pixel values are not compacted to one. I tried setting the various options with no luck. Maybe add this optimization?