Answers for "make footer stick to bottom without overlap over other elements"

CSS
0

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;
}
Posted by: Guest on June-08-2020

Code answers related to "make footer stick to bottom without overlap over other elements"

Browse Popular Code Answers by Language