My print style CSS code includes the following:
* {
display:none;
}
#printableArea {
display:block;
}
Initially, I anticipated that this CSS would hide all elements except for the printableArea. Surprisingly, everything on the page became hidden when printed, resulting in a blank page.
I have correctly added this stylesheet to the HEAD section with media="print"
specified.