Home:ALL Converter>grid-template-columns for IE11?

grid-template-columns for IE11?

Ask Time:2020-05-04T16:29:38         Author:Loko

Json Formatter

So I have this website that runs fine on chrome, but not on IE11. I checked which CSS he's not receiving in IE11 and I see that once I turn off the: grid-template-columns in my chrome website, it does the same as in IE11. It doesn't put the elements next to eachother anymore because the width on the columns is set on 100% from an external file. I guess that could be changed but I'm wondering if there's a way I could get this behaviour to work in IE11? The code is:

grid-template-columns: repeat(3,1fr);

I have found that it indeed is not supported by IE11:

https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns

enter image description here

Author:Loko,eproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/61588047/grid-template-columns-for-ie11
yy