如何在 tcpdf 生成的某些 table 行报告中使用内部 css 样式?

How can use internal css style in a tcpdf generated report for some table rows?

我正在使用 tcpdf 库从 php 创建 pdf 报告,我有很多 table 可以写在 pdf 报告上。

我想在某些 table 行上使用 css 样式,但内部 css 不起作用,这就是为什么我被迫使用内联样式的原因,但事实确实如此很多时间。

因此,如果我可以使用内部 css 样式脚本对所有必需的 table 行使用一次,请大家提供一些技巧。

为库使用以下代码:

// Include the main TCPDF library (search for installation path).
require_once('tcpdf_include.php');

并为对象定义设置以下参数

  // create new PDF document
  $pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);

它会起作用。

tcpdf 库的详细说明可以参考URL: http://www.tcpdf.org/examples.php

一切顺利