본문 바로가기
프로그램개발/ClientSide(JavaScript,Angular,Vue)

css - Internet Explorer에서 인쇄 된 페이지에서 머리글과 바닥 글을 제거하는 방법

by 크레도스 2021. 3. 15.

아래 코드는 크롬과 파이어 폭스에서 머리글과 바닥 글을 제거 할 수 있지만 인쇄 된 페이지의 Internet Explorer에서는 제거 할 수 없습니다. IE 브라우저에서 수정하는 방법을 알려주십시오 ..

  1. @page
  2. {
  3. size: auto; /* auto is the initial value */
  4. margin: 0mm; /* this affects the margin in the printer settings */
  5. }

@media print를 사용하고 display: none 로 머리글과 바닥 글을 숨길 것입니다 . 따라서 이는 다음 CSS 규칙 (스타일 시트 하단에 있음)과 유사합니다.

  1. @media print {
  2. header, footer { display: none; }
  3. }