尝试在mpdf中添加css.但无论如何不能接受


Try to add css in mpdf. But not accept anyhow

我尝试在mpdfstyletables.css文件中添加css,但无法添加新的css。PHP代码:

<?php
$html = utf8_decode($html);
$html = iconv("UTF-8","UTF-8//IGNORE",$html);
include("./MPDF/mpdf.php");
$tpdf=new mPDF('c','A4','','',32,25,27,25,16,13); 
$tpdf->ignore_invalid_utf8 = true;
$stylesheet = file_get_contents('mpdfstyletables.css');
$tpdf->WriteHTML($stylesheet,1);
$tpdf->WriteHTML($html,2);
$tpdf->Output($fname,'I');
exit();
?>

我已经试过了,但是不适合我。

如何添加css。我感谢所有的回应。谢谢。

能否尝试渲染html内容而不是utf8_decode.

 $tpdf->WriteHTML(("youtfilename.php")->render(),2);

通过这样使用,我已经应用了两个css文件,它工作得很好。

希望能有所帮助!