Forum Moderators: not2easy
You may be able to improve on Robin's approach and make far fewer changes to the page. That could be useful if you have a lot of other major containers on the page.
In the print style sheet, set everything to not print:
* {
display: none;
}
html {
display: none;
}
Then have one other style, say:
.to-print {
display: block
}
and style your table with that.