프로그램개발/ClientSide(JavaScript,Angular,Vue)
css - Internet Explorer에서 인쇄 된 페이지에서 머리글과 바닥 글을 제거하는 방법
크레도스
2021. 3. 15. 13:38
아래 코드는 크롬과 파이어 폭스에서 머리글과 바닥 글을 제거 할 수 있지만 인쇄 된 페이지의 Internet Explorer에서는 제거 할 수 없습니다. IE 브라우저에서 수정하는 방법을 알려주십시오 ..
- @page
- {
- size: auto; /* auto is the initial value */
- margin: 0mm; /* this affects the margin in the printer settings */
- }
@media print를 사용하고 display: none 로 머리글과 바닥 글을 숨길 것입니다 . 따라서 이는 다음 CSS 규칙 (스타일 시트 하단에 있음)과 유사합니다.
- @media print {
- header, footer { display: none; }
- }