如何每页只显示一次表格行?

问题描述 投票:0回答:1
css pagination princexml
1个回答
0
投票

用这个回答我自己的问题:

div.question03 tr.q3_pageheader {
    display: none;
}

div.question03 table:nth-child(4n+1) tr.q3_pageheader {
    display: table-row;
}

我已经确认这在 PrinceXML 和 webkit 中都有效。在每页有一定数量的表格的任何情况下,类似的东西都会起作用。

© www.soinside.com 2019 - 2024. All rights reserved.