Home:ALL Converter>How to edit grid-template-columns for IE11

How to edit grid-template-columns for IE11

Ask Time:2018-09-15T06:12:33         Author:Matěj Chumlen

Json Formatter

Here is my code:

grid-template-columns: repeat(auto-fill,minmax(120px, 1fr));

I am trying to make my grid layout work on IE11. I found that repeat() is not supported and I should rewrite it. But I could not find any way to rewrite it without knowing the specific number of repeats. Autoprefixer did not help.

Is this even possible?

Author:Matěj Chumlen,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/52339815/how-to-edit-grid-template-columns-for-ie11
yy