Answers for "how to show footer always at bottom"

CSS
3

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
1

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 "how to show footer always at bottom"

Browse Popular Code Answers by Language