Advertisement
AncientGigas

Ngetik Coding - CSS - Layout Website

Apr 20th, 2018
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.45 KB | None | 0 0
  1.     * {
  2.      box-sizing: border-box;
  3.     }
  4.  
  5.     *:before,
  6.     *:after {
  7.      box-sizing: border-box;
  8.     }
  9.  
  10.     html,
  11.     body {
  12.      height: 100%;
  13.      position: relative;
  14.      margin: 0; padding: 0;
  15.     }
  16.  
  17.     .container {
  18.      min-height: 100vh;
  19.      overflow: hidden;
  20.      display: block;
  21.      position: relative;
  22.      padding-bottom: 100px;
  23.     }
  24.  
  25.     .footer {
  26.      position: absolute;
  27.      bottom: 0;
  28.      width: 100%;
  29.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement