Skip to content

Instantly share code, notes, and snippets.

@ArtemSites
Last active August 21, 2019 13:43
Show Gist options
  • Save ArtemSites/feb8ac738ded104404fdcc8e10ea9d3d to your computer and use it in GitHub Desktop.
Save ArtemSites/feb8ac738ded104404fdcc8e10ea9d3d to your computer and use it in GitHub Desktop.
Grid для IE.
.block_product .block__body {
display: -ms-grid;
display: grid;
-ms-grid-columns: 100%; /* для малых разрешений */
grid-template-columns: 1fr;
grid-gap: 20px;
}
.productCard {
margin-bottom: 20px;/* вместно row gap для ie */
}
.productCard:nth-child(2) {
-ms-grid-row: 2;
-ms-grid-column: 1;
-ms-grid-column-span: 1;
}
.productCard:nth-child(3) {
-ms-grid-row: 4;
-ms-grid-column: 1;
-ms-grid-column-span: 1;
}
.productCard:nth-child(4) {
-ms-grid-row: 5;
-ms-grid-column: 1;
-ms-grid-column-span: 1;
}
.productCard:nth-child(5) {
-ms-grid-row: 6;
-ms-grid-column: 1;
-ms-grid-column-span: 1;
}
/* ... нужно все возможные прописать... */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment