我正在从html内容生成pdf报告,我试图将页脚html内容放在pdf中,但是我无法将其放在cfhtmltopdfitem标记中,因为div标签和类不允许在其中。所以,我只是将它保存在我的html体内,但是我在html页脚和实际的pdf页脚之间得到了一个巨大的空间(如图中所示)。
***注意:我觉得这个代码示例不是必需的,如果需要请告诉我。
提前致谢。
我已将此问题放在ColdFusion论坛中,以下是参考:https://forums.adobe.com/thread/2204100
答案 0 :(得分:0)
如果没有看到您的代码,就很难诊断出来。如果您使用的是CFdocument
,请设置marginBottom="0"
属性。 EX:
<cfdocument
scale="100" unit="in"
format="pdf"
name="temp"
overwrite="yes"
localUrl="no"
fontEmbed="yes"
marginBottom = "0"
marginLeft = "0"
marginRight = "0"
marginTop = "0"
pageWidth="7.5"
pageHeight="10"
orientation="landscape" >