TCPDF 用于设置边距
当我尝试使用内置函数设置边距时,我正在使用 TCPDF
生成 PDF
文件,即 $pdf->SetMargins()
,它不起作用。我使用它的主要目的是删除 ul
和 li
标签的额外空间,因为它会干扰我的 pdf 格式和文本内容相互混合。
任何帮助将不胜感激。
I am generating PDF
file using TCPDF
, when I try to use inbuilt functions for setting margin, i.e. $pdf->SetMargins()
, it doesn't work. My main purpose for it to remove extra space for ul
and li
tags, because it is disturbing my pdf format and text content mixing into each other.
Any help would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
设置边距是针对文档本身的,不会影响文档上的 ul 或 lis。你必须自己为它们设置样式。一个技巧是全部内嵌样式(假设您为 1990 年构建了一个页面)。
Set margins is for the document itself and it will not affect the ul or lis on the document. You got to set the styling for those yourself. One tip is to do the styling all inline (just pretend that you building up a page for 1990).