将单元格边框设置为 tcpdf WriteHTML 中的虚线
嗨,我想在 TCPDF writehtml() 中将表格单元格的边框设为虚线...我尝试过对表格使用 border=1 但只有粗边框..我也尝试过使用 css,例如 style= "border-style: dashed;border-width: 1px; "
但是边框保持不变......任何人都可以指出我正确的方向吗?
Hi i want to make the border of table cells as dashed lines in TCPDF writehtml()... I have tried using border=1 for tables but only a thick border comes .. also i have tried using css like style="border-style: dashed;border-width: 1px; "
however the border remains the same... Can anyone point me in the right direction?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据文档,如果您使用
writeHTMLCell()< /code>,第6个参数代表边框样式。虚线边框如下所示:
此示例 (demo) 帮助我使用
MultiCell()
而不是 HTML 在 PHP 中创建表格。According to the docs, if you’d use
writeHTMLCell()
, the 6th argument represents the border style. A dashed border would look like:This example (demo) helped me a lot creating tables in PHP with
MultiCell()
instead of HTML.style="border:1px dashed;"
这对我有用......style="border:1px dashed;"
This is working for me ....