Does anyone know of a way to print an HTML with multiple tabs? I am hoping to print each tab, but only want to click 'print' once.
I'm wondering if there is a parameter or css that I can set somewhere?
Html is generated using rmarkdown.
Thanks!
replies are closed, so i'll add this follow up here
This code (found on stackoverflow) works:
<style>
@media print {
.tab-pane {
display: block !important;
opacity: 1;
}
}
</style>