我正在使用 PDF 文档中创建一个页脚,<cfdocumentitem type="footer">
它工作正常。除了我似乎无法控制字体。我已经尝试过<span>
,<font face>
等等,但没有运气。目前我正在尝试使用如下类的表。
任何人都知道如何控制页脚中的字体外观<cfdocumentitem>
?
<cfdocument format="pdf"
marginBottom = ".5"
marginLeft = ".4"
marginRight = ".4"
marginTop = ".2"
>
<style type="text/css">@import "pdf.css";</style>
<cfdocumentitem type="footer">
<cfoutput>
<table width=100%>
<tr>
<td class=verd10>
<b>#pdfstuff.pdffinal#</b>
</td>
<td align=right class=verd10 valign=top>
Page #cfdocument.currentPageNumber# of #cfdocument.currentPageNumber#
</td>
</tr>
</table>
</cfoutput>
</cfdocumentitem>
pdf document data etc
</cfdocument>