DEV Community

Discussion on: Super Simple Grids Using CSS Grid

Collapse
 
geebru profile image
Greg Bruening

It's immensly important to know that in IE10 auto-placement isn't supported in grid, meaning you'd have to manually place every item.

To me, it's safer to build grid for the browsers that include full support and then include reasonable fallbacks for browsers that only partially support or don't support grid.

Even better to build the "fallback" first, then enhance with grid if @supports passes!