-1

Footer at bottom of a page

I created a responsive webpage in bootstrap3, i need to set footer on the bottom of the page, position fixed has some problem in desktop

Siguza
  • 21,155
  • 6
  • 52
  • 89
Rakesh
  • 11
  • 1
  • 6

1 Answers1

0

use

#footer {
    position: fixed;
    bottom: 0;
    width: 100%;
}

And possible duplicate of Make div stay at bottom of page's content all the time even when there are scrollbars

Community
  • 1
  • 1
Abdulla Nilam
  • 36,589
  • 17
  • 64
  • 85