Computer Science, asked by emasthampy7588, 1 year ago

How to fix the footer the bottom to the page in html using css?

Answers

Answered by Anonymous
0

Hi

To fix the footer at the bottom of web page you have to add following CSS, I assume that the parent tag of footer will have .footer class

.footer {

   position: fixed;

   left: 0;

   right: 0;

   bottom: 0

}

Similar questions