Answers for "how to stick a division at the bottom of the page"

-1

how to make element stick to bottom

.fotter{
	position: fixed;
    bottom: 0px;
}
Posted by: Guest on May-22-2020
2

push footer to bottom

.flex-wrapper {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  justify-content: space-between
}
Posted by: Guest on August-13-2020

Code answers related to "how to stick a division at the bottom of the page"

Browse Popular Code Answers by Language