Last active
August 21, 2019 13:43
-
-
Save ArtemSites/feb8ac738ded104404fdcc8e10ea9d3d to your computer and use it in GitHub Desktop.
Grid для IE.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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