printThis 사용중 웹 프린트시 페이지 하단 고정글
본문
printThis사용중입니다.
저 박스 친 객체를 어떤 페이지에서든 하단에 고정하고 싶은데 방법이 있을까요??
설명이 부족한부분은 댓글 남겨주시면 꼬박꼬박 달아보겠습니다!!
답변 2
https://stackoverflow.com/questions/14088745/header-and-footer-in-each-page-in-print-mode-with-css
참고하세요
<!DOCTYPE html>
<html>
<head>
<title>고정 객체 페이지</title>
<style>
.fixed-object {
position: fixed;
bottom: 0;
background-color: #ccc;
padding: 10px;
width: 100%;
text-align: center;
}
</style>
</head>
<body>
<!-- 페이지 내용 -->
<h1>페이지 내용</h1>
<p>페이지 내용을 작성합니다.</p>
<!-- 고정 객체 -->
<div class="fixed-object">
<p>이 객체는 페이지 하단에 고정됩니다.</p>
</div>
</body>
</html>
답변을 작성하시기 전에 로그인 해주세요.