HTML : 인쇄할 CSS 지정
<link type="text/css" rel="stylesheet" href="screen.css" media="screen" />
<link type="text/css" rel="stylesheet" href="print.css" media="print" />
아래 예에서는 화면과 인쇄에 서로 다른 글꼴군을 지정합니다. 다음 CSS는 화면과 프린터 모두에 동일한 글꼴 크기를 사용합니다.
<style type = "text/css">
@media screen {
p.bodyText {font-family:verdana, arial, sans-serif;}
}
@media print {
p.bodyText {font-family:georgia, times, serif;}
}
@media screen, print {
p.bodyText {font-size:10pt}
}
</style>
모든 것을 말하면서 계속 배우는 것이 좋습니다!
이 기사를 읽어 주셔서 감사합니다. 와 에서 언제든지 저와 연결해 주세요.
Reference
이 문제에 관하여(HTML : 인쇄할 CSS 지정), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/rajeshkumaryadavdotcom/html-specify-the-css-for-printing-58i9텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)