Answers for "como colocar o footer sempre no final da página"

CSS
1

como colocar o footer sempre no final da página

html, body {
margin: 0;
padding: 0;
height: 100%;
}
#wrapper{
min-height: 100%;
position: relative;
}
div.body-content{
  /** Altura do rodapé tem que ser igual a isso aqui e vice-versa **/
padding-bottom: 100px;
}
footer{
background: #ffab62;
width: 100%;
height: 100px;
position: absolute;
bottom: 0;
left: 0;
}
Posted by: Guest on March-01-2022

Code answers related to "como colocar o footer sempre no final da página"

Browse Popular Code Answers by Language