daggerok / html-footer

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

Home Page:https://daggerok.github.io/html-footer/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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>

About

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

https://daggerok.github.io/html-footer/

License:MIT License


Languages

Language:HTML 81.3%Language:CSS 18.7%