normalizePositions
Normalizes `position` values in the `background`, `background-position`, `-webkit-perspective-origin` and `perspective-origin` properties.
Example
Input
.box {
background: 30% center / 50% 50%;
}Output
.box {
background: 30% / 50% 50%;
}