Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

make footer stick to bottom without overlap over other elements

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#footer {
  background-color: #efefef;
  flex: 0 0 50px;/*or just height:50px;*/
  margin-top: auto;
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #footer #stick #bottom #overlap #elements
ADD COMMENT
Topic
Name
4+6 =