I just like the divs under .wp_left_col div be placed in separate pages. This is my css code.
divs
.wp_left_col
div
.wpi_left_col > div {
here's an easier solution for setting all parent elements to not float on print:
@media print { * { float: none !important; } .tab { display: block; break-before: always; page-break-before: always; } }