How expert like you would you code an odd & even's tr background to be visible for print.
I tried without success to !important them in @media print
@media print {
table > tr:nth-child(odd) {
background: lightgrey!important;
}
table > tr:nth-child(even) {
background: white!important;
}
}
Best