본문 바로가기

퍼블리싱/HTML | CSS | Javascript

항상 화면 하단에 고정되는 footer

 

 

 

 

HTML

 

1
2
3
4
<div id="footer">
  <p>브라우저 아래에 고정되는 footer부분</p>
</div>
 
cs

 

CSS

 

1
2
3
4
5
6
7
8
9
10
11
12
#footer {
   position:fixed;
   left:0px;
   bottom:0px;
   height:60px;
   width:100%;
   background:#EE7785;
   color: white;
}
#footer p {
   text-align: center;
}
cs

 

728x90