i have dynamic items in tr
, try to pint two tr
per page and my css is
CSS :
@media print {
body {font-size:10px}
table tr:nth-child(2n) {
page-break-after: always;
}
.noptrint {display:none;}
}
and see http://jsfiddle.net/4jr8s/
it work on firefox
but not in Chrome
browser, what is problem in chrome
?