Of course, you can add another stylesheet for printing, see the example below.
<link href="print.css" rel="stylesheet" type="text/css" media="print" />
or when you exit the stylesheet, you can add a media query
@media print { .no-print {display: none;} }
And add the .no-print class where you don't want to print the HTML element
source share