Printing an APEX-page (5.1) with Firefox gives at the end 2 extra pages, what could I do to avoid that? In Chrome and IE this is not the case.
I have made a new empty APEX 5.1 application with on the home page a static region, which I filled with a text. I have add the next lines css to don't display unwanted information:
@media print {
.t-Body-nav, .t-Header, #apexDevToolbar, .t-BreadcrumbRegion-buttons, .t-Breadcrumb-item, .t-Footer {
display: none !important;
}
.t-Body-content {
display: block !important; /*is needed to avoid that the firefox cuts off the static region after 1 page
min-height: 100% !important; /*helps to get rid of 1 blank page
}
}
How could I also get rid of the still present blank page?