A Pen by Jens Grochtdreis on CodePen.
Last active
August 7, 2019 09:33
-
-
Save jensgro/947c0eba35296751cbe143507d683c39 to your computer and use it in GitHub Desktop.
Ein einfaches Grid bauen
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="wrapper"> | |
<header class="page-header">header</header> | |
<aside class="navigation">navigation</aside> | |
<main class="main-content">main</main> | |
<footer class="page-footer">footer</footer> | |
</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
.page-header {grid-area: header;} | |
.navigation {grid-area: navigation;} | |
.main-content {grid-area: main;} | |
.page-footer {grid-area: footer;} | |
.wrapper { | |
display: grid; | |
grid-gap: 20px; | |
grid-template-columns: 1fr 3fr; | |
grid-template-areas: | |
"header header" | |
"navigation main" | |
"footer footer" | |
} | |
/* just for testing purposes */ | |
.page-header {background-color: #FFB74D; color: #000} | |
.navigation {background-color: #E64A19; color: #fff;} | |
.main-content { background-color: #7CB342;color: #fff;} | |
.page-footer { background-color: #0288D1;color: #fff;} | |
.page-header, | |
.navigation, | |
.main-content, | |
.page-footer { | |
padding: 40px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment