如何在 mpdf 中添加 css 文件
我正在尝试使用mpdf将html转换为pdf。问题是我无法将css应用于pdf文件。
这是我的php代码:
<?php
$html = $divPrint;
$mpdf=new mPDF();
$stylesheet = file_get_contents('pdf.css');
$mpdf->WriteHTML($stylesheet,1);
$mpdf->WriteHTML($html,2);
$mpdf->Output();
exit;
?>
它正在做的是在我的这个php页面上通过ajax获取html。但是它给出的输出没有附带我为它编写的css。
请告诉我现在要做什么?