Answers for "how to get my footer to the bottom of the page using css"

CSS
9

how to get my footer to the bottom of the page using css

#page-container {
  position: relative;
  min-height: 100vh;
}

#content-wrap {
  padding-bottom: 2.5rem;    /* Footer height */
}

#footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2.5rem;            /* Footer height */
}
Posted by: Guest on March-16-2020
0

how to set the footer at the bottom using css

<!DOCTYPE html>

<html>
 <head>
   <link rel="stylesheet" type="text/css" href="main.css" />
 </head>

<body>
 <div id="page-container">
   <div id="content-wrap">
     <!-- all other page content -->
   </div>
   <footer id="footer"></footer>
 </div>
</body>

</html>
Posted by: Guest on March-15-2021

Code answers related to "how to get my footer to the bottom of the page using css"

Browse Popular Code Answers by Language