Would it be possible to discard parts of the calc() function that operate on zero values? For example:
div {
width: calc(100vw / 2 - 6px + 0px);
}
Can be:
div {
width: calc(100vw / 2 - 6px);
}
And:
div {
width: calc(500px - 0px);
}
Can be:
It's from this edge case in CSSO:
css/csso#222