Last active
          October 1, 2020 12:22 
        
      - 
      
 - 
        
Save ThomasKientz/3daf0807cb20e0809959bee8075e7fea to your computer and use it in GitHub Desktop.  
Revisions
- 
        
ThomasKientz revised this gist
Oct 1, 2020 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -3,7 +3,7 @@ <body style="margin: 0"> <div style="min-height: 100vh; display: flex; flex-direction: column"> <div style="background-color: darkcyan">Header</div> <div style="flex: 1 1 0px; overflow: auto"> <div style="height: 20000px">Scrollable content</div> </div> <div style="background-color: red">Footer</div>  - 
        
ThomasKientz renamed this gist
Oct 1, 2020 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -2,9 +2,9 @@ <html lang="en"> <body style="margin: 0"> <div style="min-height: 100vh; display: flex; flex-direction: column"> <div style="background-color: darkcyan">Header</div> <div style="flex: 1 1 0px; overflow: scroll"> <div style="height: 20000px">Scrollable content</div> </div> <div style="background-color: red">Footer</div> </div>  - 
        
ThomasKientz created this gist
Oct 1, 2020 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ <!DOCTYPE html> <html lang="en"> <body style="margin: 0"> <div style="min-height: 100vh; display: flex; flex-direction: column"> <div style="background-color: darkcyan">Toolbar</div> <div style="flex: 1 1 0px; overflow: scroll"> <div style="height: 20000px">I am scrollable</div> </div> <div style="background-color: red">Footer</div> </div> </body> </html>