css grid - support wrapper for IE Edge

by ian_smithz

HTML

May 24, 2017
Allow Edge to see the Grid when the newest version releases.

CSS

@supports (grid-auto-rows: 1px) {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-row-gap: calc(.8rem + .5vw);
    > p, iframe, .highlight {
        grid-column: 3 / span 3;
        width: auto;
    }
}