PicoCSS Sticky Footer
Notes
| 2024-06-10
(updated 2025-10-25)
| 1 min read
#picocss
A sticky footer using [[picocss]]
html,
body {
height: 100vh;
}
body > footer {
position: sticky;
top: 100vh;
}