calc
Reduces CSS `calc` expressions wherever possible, ensuring both browser compatibility and compression.
Example
Input
.box {
width: calc(2 * 100px);
}Output
.box {
width: 200px;
}Reduces CSS `calc` expressions wherever possible, ensuring both browser compatibility and compression.
.box {
width: calc(2 * 100px);
}.box {
width: 200px;
}