Footer at the bottom with TailwindCSS
2023-03-04
Just a quick note for myself when setting up HTML templates.
<body class="flex flex-col min-h-screen">
<footer class="mt-auto">
© 2023 All Rights Reserved.
</footer>
</body>
Make body into a flex box, and use `mt-auto` to push the footer down.