将单元格边框设置为 tcpdf WriteHTML 中的虚线

发布于 2024-10-24 00:52:00 字数 183 浏览 1 评论 0原文

嗨,我想在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

会傲 2024-10-31 00:52:00

根据文档,如果您使用writeHTMLCell()< /code>,第6个参数代表边框样式。虚线边框如下所示:

TCPDF::writeHTMLCell(
    …,
    array(
        'LRTB' => array(
            'width' => 1, // careful, this is not px but the unit you declared
            'dash'  => 1,
            'color' => array(0, 0, 0)
        )
    ),
    …
);

此示例 (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:

TCPDF::writeHTMLCell(
    …,
    array(
        'LRTB' => array(
            'width' => 1, // careful, this is not px but the unit you declared
            'dash'  => 1,
            'color' => array(0, 0, 0)
        )
    ),
    …
);

This example (demo) helped me a lot creating tables in PHP with MultiCell() instead of HTML.

翻身的咸鱼 2024-10-31 00:52:00

style="border:1px dashed;" 这对我有用......

style="border:1px dashed;" This is working for me ....

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文