I have some code that bounces text back and forth across the width of a DIV.
While this example works in Firefox, Opera, Safari, and Chrome, it will not work in Internet Explorer 11.
The problem is that the calculation is done in the @keyframe area of the code
@keyframes slidein {
from {
transform: translateX(0);
}
to {
transform: translateX(calc(-100% + 250px));
}
}
Please see JSFiddle for a complete example: http://jsfiddle.net/Musicman/g7e34/5/
Ps The problem has nothing to do with me, requiring the prefixes -ms-vendor
Thank!
source
share