Home > Back-end >  How to position an element i.e. footer at the the bootom of the page without absolute property?
How to position an element i.e. footer at the the bootom of the page without absolute property?

Time:01-04

I want to put the footer at the bottom of the page

To position an element i.e. footer at the the bootom of the page without absolute property

CodePudding user response:

use position: fixed instead of position: absolute for the .footer css

CodePudding user response:

Hard to understand your question without seeing any code. But generally this won't be achieved by using position:absolute or fixed.

Fixed won't put it at the end of the page, it would put it at the bottom of the screen.

Please add your code to your question. Usually the Footer is the last div within your body tags.

  • Related