Would it be possible to get the css calc
function to function with an offset as shown below in IE11?
The following code does not produce the desired result in IE11:
div:nth-child(1) {
background: hsl(114.54545, 44%, calc(55.88235% * 1.1));
}
However, a static percentage value works:
div:nth-child(2) {
background: hsl(114.54545, 44%, 55.88235%);
}