I've been trying to replicate the display:grid and grid-template-columns functionality on IE11, but I can't seem to get it to work properly like it does in Chrome. What am I missing? Also, when I pasted my code into the snippet, the yellow bar doesn't appear.
.ctn_mapa_hoteles {
display: grid;
display: -ms-grid;
grid-template-columns: 300px 790px auto;
-ms-grid-columns: 300px 790px auto;
}
.col_ctn_filtros {
height: 85vh;
padding: 30px;
overflow-y: auto;
background-color: cyan;
}
.col_ctn_hoteles {
padding-left: 0px;
padding-right: 0px;
background-color: #f5f5f5;
}
.col_ctn_mapa {
background-color: yellow;
}
<div class="ctn_mapa_hoteles">
<div class="col_ctn_filtros">
</div>
<div class="col_ctn_hoteles">
</div>
<div class="col_ctn_mapa">
</div>
</div>