There may be times in which your website or application would like to improve the user's experience when printing content. There are several possible scenarios:
There may be other cases in which you want to manage the printing process, but these are some of the most common scenarios. This article provides tips and techniques for helping your web content print better.
Add the following to your <head> tag.
<link href="/path/to/print.css" media="print" rel="stylesheet" />
You can use the CSS @media at-rule to set different styles for your webpage when it is printed on paper or as a PDF versus when it is displayed on the screen. The print media type sets the styles for printed media; these styles will only be used for printed content.
Add this at the end of your stylesheet. Note that specificity and precedence rules still apply:
@media print {
/* All your print styles go here */
#header,
#footer,
#nav {
display: none !important;
}
}
You can also use the @page at-rule to modify different aspects of printed pages including the page's dimensions, orientation, and margins. The @page at-rule can be used to target all pages in a print-out or just a specific subset of pages
Browsers send beforeprint and afterprint events to determine when printing may have occurred. You can use this to adjust the user interface presented during printing (for example displaying or hiding user interface elements during the print process).
Here are some common examples.
The following example will close the window after the user has printed its contents:
window.addEventListener("afterprint", () => self.close);
If you want to be able to print an external page without opening it, you can utilize a hidden <iframe> (see: HTMLIFrameElement), automatically removing it after the user prints its contents. The following is a possible example which will print a file named externalPage.html:
<button id="print_external">Print external page!</button>
function setPrint() {
const closePrint = () => {
document.body.removeChild(this);
};
this.contentWindow.onbeforeunload = closePrint;
this.contentWindow.onafterprint = closePrint;
this.contentWindow.print();
}
document.getElementById("print_external").addEventListener("click", () => {
const hideFrame = document.createElement("iframe");
hideFrame.onload = setPrint;
hideFrame.style.display = "none"; // hide iframe
hideFrame.src = "external-page.html";
document.body.appendChild(hideFrame);
});
window.printbeforeprint eventafterprint event@media
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_media_queries/Printing