Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

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;
}
Source by pt.stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #como #colocar #footer #sempre #final #da
ADD COMMENT
Topic
Name
1+2 =