how to put footer at bottom of page code example
Example 1: why is my footer not at the bottom html
#footer {
position:fixed;
left:0px;
bottom:0px;
height:30px;
width:100%;
background:#999;
}
//name footer id="footer"
Example 2: 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 {
position: absolute;
bottom: 0;
width: 100%;
height: 2.5rem;
}
Example 3: how to fix the footer at the bottom of the page
#footer {
position:fixed;
left:0px;
bottom:0px;
z-index:1;
width:100%;
}
Example 4: how to keep footer bottom of the page css
.footerclass {
background-color: #eeeeee;
position: fixed;
top: auto;
bottom: 0;
width: 100%;
display: inline-block;
}
Example 5: keep footer at bottom of page
#footer {
position: relative;
margin-top: -180px;
height: 180px;
clear: both;
}
body:before {
content: "";
height: 100%;
float: left;
width: 0;
margin-top: -32767px;
}
Example 6: 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>