DEV Community

Marco Kamner
Marco Kamner

Posted on • Originally published at blog.marco.ninja on

PicoCSS Sticky Footer

A sticky footer using PicoCSS

html,
body {
  height: 100vh;
}

body > footer {
  position: sticky;
  top: 100vh;
}

Enter fullscreen mode Exit fullscreen mode

Top comments (0)