@media print {
html, body {
height:100vh !important;
overflow-y:hidden !important;
transform: scale(1);
}
.no-print {
display: none !important;
}
html, body {
size:297mm 210mm;
margin: 0;
padding: 0;
page-break-after: avoid;
page-break-before: avoid;
}
body {
visibility: hidden;
padding: 0;
}
* {
float: none !important;
}
.page-divide {
visibility: visible;
page-break-before: avoid;
page-break-after: avoid;
page-break-inside: avoid;
}
.page {
overflow:hidden;
}
@page {
size: A4 landscape;
margin: 0;
}
}
인쇄 페이지용 미디어 쿼리
프린트(cmd + p) 화면에서 적용할 CSS를 @media print로 설정할 수 있다
페이지에서 숨겨야하는 부분은 display 또는 visible로 제어할 수 있다
size:297mm 210mm;
transform: scale(1);
size를 A4사이즈에 맞게 297mm 210mm 로 설정을 하니 페이지의 컨텐트가 반복되거나 빈페이지가 여러개 보여지는 문제가 있었다
추가로 position: fixed 또는 absolute가 해당 이슈를 만들어내기도 해서 인쇄 화면에서 적용되는 CSS에 fixed와 absolute 대신 static을 적용하여 해결하였다