Help everyone! Chrome print preview is a problem when the user's chrome was automatically upgraded to version 108.
I configuring the rowspan attribute of the td element in the table element make the merged row to exceed one page, it will break. Like those pic.
<tr>
<td rowspan="16">5</td>
<td rowspan="16">1</td>
<td>1</td>
<td>1</td>
<td>1</td>
<td>1</td>
<td colspan="5">1</td>
<td>1</td>
<td>1</td>
</tr>
But the same webpage is normal when it is displayed, and it is also normal in 107 and earlier versions. Like this pic.
I found the log for chrome. chrome-108 Then added the style, but there are still some break.
tr {
break-after: aviod;
break-before: aviod;
break-inside: aviod;
}