footer

Jiwontwopunch·2022년 5월 9일
0

TIL

목록 보기
52/92
post-thumbnail
HTML

<div id='wrapper'>
  <div>
    content
  </div>
</div>
<footer></footer>


CSS

#wrapper{
  height: auto;
  min-height: 100%;
  padding-bottom: (footer높이);
}
footer{
  height: (footer높이);
  position : relative;
  transform : translateY(-100%);
}

0개의 댓글