Created
August 5, 2017 19:19
-
-
Save anonymous/7a605eaaaecd86651458c6bc39eb8190 to your computer and use it in GitHub Desktop.
CSS Grid - Header + Sidebar
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
| <div class="container"> | |
| <div class="item item-1"></div> | |
| <div class="item item-2"></div> | |
| <div class="item item-3"></div> | |
| </div> |
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
| body { | |
| margin: 0px; | |
| } | |
| .container { | |
| height: 100vh; | |
| display: grid; | |
| grid-template-columns: auto 300px; | |
| grid-template-rows: 100px auto; | |
| } | |
| .item-1 { | |
| grid-column: 1/3; | |
| background-color: red; | |
| } | |
| .item-2 { | |
| background-color: green; | |
| } | |
| .item-3 { | |
| background-color: blue; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment