Skip to content

Commit

Permalink
[#1] Ik heb layout 1 opgelost
Browse files Browse the repository at this point in the history
  • Loading branch information
DivaniNL committed Sep 30, 2024
1 parent 49bb361 commit 9324a86
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions basic/basic-layout-1.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,23 @@
<style>
body {
display: grid;
gap: 5px;
}
header{
grid-row: 1 / 3;
grid-column: 1 / 10;
}
nav{
grid-row: 3 / 7;
grid-column: 1 / 1;
}
main{
grid-column: 2 / 10;
grid-row: 3 / 7;
}
footer{
grid-row: 7 / 7;
grid-column: 1 / 10;
}
/* Doe hier jouw ding! */
</style>
Expand Down

0 comments on commit 9324a86

Please sign in to comment.