CSS 边框 mpdf 输出

CSS border mpdf output

这是正在发生的事情。发生了什么我正在使用 mpdf 作为输出,但出于某种原因我无法使 CSS 输出正常工作。

这里是 CSS 代码:

td colspan="2" style="border-bottom:2px dashed #000;"

有没有办法将 CSS 用于 PDF 输出?

$mpdf=new mPDF();
$html = "<H1>Hello World</H1>";
$stylesheet = file_get_contents('style.css');  
$mpdf->WriteHTML($stylesheet,1);    // The parameter 1 tells that this is css/style only and no body/html/text
$mpdf->WriteHTML($html,2);
$mpdf->Output();
exit;