0

Attached is the image of my webpage. How to make this footer attach to bottom of screen rather than being displayed immediate after publish button?

I have written this code for footer:

.footer{
  display:flex;
  justify-content: center;
  background-color: #1abc9c;
  align-items: center;
  height:60px;
}

I know I could use "position:fixed" and "bottom:0" but that way footer will stick to bottom of screen each time I scroll. But I don't want that the footer should stick to bottom. I don't want that each time I scroll footer is seen at bottom. It shood just remain at the bottom of the web page.

0 Answers0