Skip to content

Minimal css to implement bottom footer functionality by using flexbox layout grid

License

Notifications You must be signed in to change notification settings

daggerok/html-footer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

d0762e2 · Feb 17, 2019

History

8 Commits
Feb 17, 2019
Feb 17, 2019
Feb 17, 2019
Feb 17, 2019
Feb 17, 2019
Feb 17, 2019
Feb 17, 2019
Feb 17, 2019

Repository files navigation

bottom footer css

By using flexbox

Demo

index.html

<html lang="en">
  <head>
    <title>Minimal bottom footer css</title>
    <style>
      .app {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
      } 
      .app-content {
        flex: 1;
      }
    </style>
  </head>
  <body class="app">
    <nav>navbar is here</nav>
    <div class="app-content">
      main site content is here
    </div>
    <footer>footer is here</footer>
  </body>
</html>