您好我想在TCPDF writehtml()中将表格单元格的边框设为虚线...我尝试使用border = 1表格,但只有一个粗边框..我也尝试过使用css之类的{{ 1}}然而边界保持不变......有人能指出我正确的方向吗?
答案 0 :(得分:2)
根据the docs,如果您使用writeHTMLCell()
,则第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)
)
),
…
);
This example(demo)帮助我在PHP中使用MultiCell()
而不是HTML创建表格。
答案 1 :(得分:1)
style="border:1px dashed;"
这对我有用....