这么多行后强制分页?

时间:2019-06-27 18:59:42

标签: html css

我们正在使用Coldfusion和SQL,并试图用只有一个tablr的一行查询来创建一个页面,并需要它强制在这么多行之后分页。在填充8x11页面后,我们也可以强制分页。我正在使用标题,它将永远不会在第2页上显示标题,因为它无法弄清楚分页符在哪里。任何帮助都会很棒。

谢谢

<head>
<script>
thead {
position: sticky;
top: 0px;
}
</script>
</head>
<thead>
<table width="100%" cellspacing="2" cellpadding="0" border="0"     align="center" bgcolor="#CCCCCC" contenteditable="false">
<td bgcolor="#EDE9C6" width="5px"> 
  <div align="center"><nobr><font size="-2">fmt</font></div> 
</td>
<td style="overflow:hidden;" bgcolor="#EDE9C6" width="23px"> 
  <div align="center"><strong><font size="-2">    <nobr>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;category&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;    </font></strong></div>
</td>
<td bgcolor="EDE9C6" width="20px"> 
  <div align="center"><nobr><font size="-2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;SKU&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font></div> 
</td>
<td bgcolor="EDE9C6" width="25px"> 
  <div align="center"><strong><nobr><font size="-2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;artist&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font></strong></div> 
</td>
<td bgcolor="EDE9C6" width="25px"> 
  <div align="center"><nobr> <font size="-2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;title&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font></div> 
</td>
<td bgcolor="EDE9C6" width="5px"> 
  <div align="center"><strong><nobr><font size="-2"><strong>qs&nbsp;    </strong></font></strong></div> 
</td>
<td bgcolor="EDE9C6" width="12px"> 
  <div align="center"><nobr><font size="-2">fa&nbsp;</font></div></td>
<td bgcolor="EDE9C6" width="12px"> 
  <div align="center"><strong><font size="-2"><strong>ts&nbsp;</strong>    </font></strong></div> 
</td>
<td bgcolor="EDE9C6" width="12px"> 
  <div align="center"><nobr><font size="-2">wtd&nbsp;</font></div> 
</td>
<td bgcolor="EDE9C6" width="12px"><div align="center"><strong><font size="-2">mtd&nbsp;</font></strong></div></td>
<td bgcolor="EDE9C6" width="12px"><div align="center"><font size="-2">ytd&nbsp;</font></div></td>
<td bgcolor="EDE9C6" width="20px"> 
  <div align="center"><font size="-2"><strong>price</strong></font>
    </div></td>

<td bgcolor="EDE9C6" width="15px"> 
  <div align="center"><font size="-2">check</font>
  </div></td>

</table></thead>

<table width="100%" cellspacing="2" cellpadding="0" border="0" align="center" bgcolor="#CCCCCC" contenteditable="false">
<tbody>
<cfoutput query="myquery">
<tr> 
<td bgcolor="ffffff" width="5px"> 
  <div align="center"><nobr><font size="-2">#fmt#</font></div> 
</td>
<td style="overflow:hidden;" bgcolor="ffffff" width="50px"> 
  <div align="center"><strong><nobr><font size="-2">#Left(catdesc,20)#    </font></strong></div>
</td>
<td bgcolor="ffffff" width="20px"> 
  <div align="center"><nobr><font size="-2">#fsku#</font></div> 
</td>
<td bgcolor="ffffff" width="25px"> 
  <div align="center"><strong><nobr><font size="-2">#Left(artist,25)#    </font></strong></div> 
</td>
<td bgcolor="ffffff" width="25px"> 
  <div align="center"><nobr><em><font size="-2">#Left(title,25)#</font>    </em></div> 
</td>
<td bgcolor="ffffff" width="8px"> 
  <div align="center"><strong><nobr><font size="-2">#fUpStkQty#</font>    </strong></div> 
</td>
<td bgcolor="ffffff" width="12px"> 
  <div align="center"><nobr><font size="-2"><cfif #Fas# is not "">X<cfelseif #Fas# is "">&nbsp;&nbsp;</cfif></font></div></td>
<td bgcolor="ffffff" width="12px"> 
  <div align="center"><strong><font size="-2">#fStockQty#</font></strong>    </div> 
</td>
<td bgcolor="ffffff" width="12px"> 
  <div align="center"><nobr><font size="-2">#fNSWTD1#</font></div> 
</td>
<td bgcolor="ffffff" width="12px"><div align="center"><strong><font size="-2">#fNSMTD1#</font></strong></div></td>
<td bgcolor="ffffff" width="12px"><div align="center"><font size="-2">#fNSYTD1#</font></div></td>
<td bgcolor="ffffff" width="20px"> 
  <div align="center"><strong><font size="-2">$#fcost#</font></strong>
    </div></td>

<td bgcolor="ffffff" width="15px"> 
  <div align="center"><font size="-2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font>
  </div></td>

 </cfoutput></tbody>
</table>

0 个答案:

没有答案