DEV Community

Discussion on: How to make footer stick at the bottom of web page.

Collapse
 
hamanel profile image
Manel

I'm working with react and what worked for me is:

#root {
  min-height: 100vh;
  position: relative;
}

footer {
  position: absolute;
  bottom: 0;
}
Enter fullscreen mode Exit fullscreen mode
Collapse
 
lewisingleton profile image
Lewis Ingleton

This worked a treat for react

Collapse
 
kaysi profile image
Kerrion

Thanks for this. It definitely works with react.