When working with the WebGrease Semantic CSS Minifier, I discovered that it incorrectly treat the decimal values.
Give an example of the source code:
h1 {
font-size: 2em;
}
h2 {
font-size: 1.75em;
}
.ui-resizable-handle {
position: absolute;
font-size: 0.1px;
display: block;
}
.ui-button-text-only .ui-button-text {
padding: .4em 1em;
}
Code, after processing by the WebGrease Semantic CSS Minifier:
h1 {
font-size: 2em
}
h2 {
font-size: 0
}
.ui-resizable-handle {
position: absolute;
font-size: 0;
display: block
}
.ui-button-text-only .ui-button-text {
padding: .4em 1em
}