Answers for "why is my footer not at the bottom html"

CSS
2

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"
Posted by: Guest on April-06-2021
-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

Code answers related to "why is my footer not at the bottom html"

Browse Popular Code Answers by Language