我曾尝试在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();
?>
我尝试了this但不适合我。
如何添加css。我感谢所有的回应。谢谢你。
答案 0 :(得分:1)
您可以尝试渲染html内容而不是utf8_decode。
即,
$tpdf->WriteHTML(("youtfilename.php")->render(),2);
通过使用这样我已经应用了两个css文件,它工作正常。
希望它可能会有所帮助!