Skip to content

Instantly share code, notes, and snippets.

@nickytoh
Last active May 25, 2018 04:49
Show Gist options
  • Save nickytoh/47c73ba7d7bb66507f9de0ecb055a744 to your computer and use it in GitHub Desktop.
Save nickytoh/47c73ba7d7bb66507f9de0ecb055a744 to your computer and use it in GitHub Desktop.
JS Hack for Grid Auto Placement in IE Implementation of CSS Grid.
// for each element
this.style['-ms-grid-column'] = Math.floor(i % 4) + 1; // 4 is the column number per row
this.style['-ms-grid-row'] = Math.floor(i / 4) + 1; // 4 is the column number per row
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment