Answers for "make footer always at bottom"

CSS
-2

how to fix the footer at the bottom of the page

#footer {
   position:fixed;
   left:0px;
   bottom:0px;
   z-index:1;
   width:100%;
}
Posted by: Guest on May-20-2021
1

set footer element at bottom

<html>
<title>Set footer bottom</title>
<body>
<footer style = "position: absolute;bottom: 0;">copyright @2021</footer>
</body>
</html>
Posted by: Guest on July-17-2021
-1

keep footer at bottom of page

#footer {
  position: relative;
  margin-top: -180px;
  /* negative value of footer height */
  height: 180px;
  clear: both;
 /*Custom styling*/
}

/* Opera Fix thanks to Maleika (Kohoutec) */

body:before {
  content: "";
  height: 100%;
  float: left;
  width: 0;
  margin-top: -32767px;
  /* thank you Erik J - negate effect of float*/
}
Posted by: Guest on November-16-2020
4

footer at bottom of body

html, body {
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
}
.content {
  flex: 1 0 auto;
}
.footer {
  flex-shrink: 0;
}
Posted by: Guest on May-09-2021
0

css footer always at bottom but visible

/* Fix the footer to the bottom */
footer { position: fixed; }
Posted by: Guest on May-16-2021

Code answers related to "make footer always at bottom"

Browse Popular Code Answers by Language