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
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
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