1
我試圖在mpdfstyletables.css
文件中添加css,但無法添加新的css。 PHP代碼:嘗試在mpdf中添加css。但不能接受
<?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。我感謝所有迴應。感謝未來。
什麼是在CSS文件?您發佈的代碼應該正常工作。 – Finwe
不會失敗,因爲你寫這個沒有標籤的HTML? –