I have a project which requires printing an HTML table with many rows.
My problem is the way the table is printed over multiple page. It will sometimes cut a row in
I faced the same problem and search everywhere for a solution, at last, I fount something which works for me for every browsers.
html { height: 0; }
use this css or Instead of css you can have this javascript
$("html").height(0);
Hope this will work for you as well.