I'm trying to use the CSS grid to make some columns on my page, but I cannot get it to work on IE.
Here is the CSS I have and it works fine on Chrome and Firefox.
.wrapper {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
grid-column-gap: 15px;
grid-row-gap: 10px;
grid-auto-flow: dense;
margin: 1em auto;
padding-left: 10px;
padding-right: 15px;
font-size: 12px;
}
Is it possible to convert this CSS to work on IE?