Created
October 17, 2018 19:17
-
-
Save sravan464/b3d1a417bb416ec754213186bc314a4a to your computer and use it in GitHub Desktop.
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
| .main { | |
| display: -ms-grid; | |
| display: grid; | |
| -ms-grid-columns: 100%; | |
| grid-template-columns: 100%; | |
| -ms-grid-rows: 170px 600px auto; | |
| grid-template-rows: 170px 600px auto; | |
| grid-template-areas: "header header header header" | |
| "content content content content" | |
| "rest rest rest rest"; | |
| } | |
| section#header { | |
| -ms-grid-row: 1; | |
| -ms-grid-column: 1; | |
| -ms-grid-column-span: 4; | |
| grid-area: header; | |
| display: -ms-grid; | |
| display: grid; | |
| } | |
| section#content { | |
| -ms-grid-row: 2; | |
| -ms-grid-column: 1; | |
| -ms-grid-column-span: 4; | |
| grid-area: content; | |
| display: -ms-grid; | |
| display: grid; | |
| } | |
| section#rest { | |
| -ms-grid-row: 3; | |
| -ms-grid-column: 1; | |
| -ms-grid-column-span: 4; | |
| grid-area: rest; | |
| display: -ms-grid; | |
| display: grid; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment