I have a table that will have its rows coloured with a liner-gradient background image, this works fine in Firefox and Chrome - but not in IE / Edge. As you can see in the linked JSFiddle below, a gradient works in a simple div element in IE - but not when applied to a table row element.
Example of linear background:
.gradient {
background-image: linear-gradient(210deg, #FFF133 0%, #16D611 50%, #00A3EF 80%);
}
Here's a JSFiddle of what I'm trying to accomplish: https://jsfiddle.net/q9jkoa52/
I've came across similar questions on a few platforms but all proposed fixes I have not seen work, or can not get to work myself. Even opening 'fixed' JSFiddles in IE, isn't actually fixed.
Is there a way to get this to work?