데일리로그C:
Published 2023. 3. 8. 15:00
footer 고정 Memo
<!--1번째 방법-->
<style>
	.footer {
		position: absolute;
		bottom:0;
		left:0;
		width:100%
	}
</style>

<!--2번째 방법-->
<style>
	.footer {
		position: fixed;
		bottom:0;
        margin: 0 auto;
		width:100%
	}
</style>


<div class="footer">
	<table width=1300 border=0 align=center>
    	<tr>
        	<td>카피라이터</td>
        </tr>
    </table>    
</div>

'Memo' 카테고리의 다른 글

팝업창  (0) 2023.04.10
FAQ  (0) 2023.03.17
** css  (0) 2023.03.15
java 오류 정리  (0) 2023.02.10
input - checkbox  (0) 2023.02.10
profile

데일리로그C:

@망밍

포스팅이 도움됐다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!

profile on loading

Loading...