我可以在创建 PDF 时在 mPdf 中使用内联 css 吗?
Can i use inline css in mPdf while creating PDF?
我已经用外部 css 做了这个。
但是当我尝试使用内联 CSS 时,它不起作用。
我可以在创建 PDF 时在 mPdf 中使用内联 css 吗?
请指导我。
根据mPDF documentation,是的:
The following are supported (in order of ascending priority - lower
ones in list overwrite higher):
HTML attributes e.g. <div align="center">
(see supported HTML attributes)
CSS Stylesheets - included in header of HTML document or as <link />
or as @import()
- html tags e.g.
p { font-size:12pt; color:#880000; }
- class e.g.
.stylename { font-size:9pt; }
- id e.g.
#style { font-size:9pt; }
In-line CSS style e.g. <p style="font-family:monospace;">
(强调我的)
使用 mpdf,添加 css 和下面的
$styles = file_get_contents('style.css');
$mpdf->WriteHTML($styles,1);
我已经用外部 css 做了这个。 但是当我尝试使用内联 CSS 时,它不起作用。
我可以在创建 PDF 时在 mPdf 中使用内联 css 吗? 请指导我。
根据mPDF documentation,是的:
The following are supported (in order of ascending priority - lower ones in list overwrite higher):
HTML attributes e.g.
<div align="center">
(see supported HTML attributes)CSS Stylesheets - included in header of HTML document or as
<link />
or as@import()
- html tags e.g.
p { font-size:12pt; color:#880000; }
- class e.g.
.stylename { font-size:9pt; }
- id e.g.
#style { font-size:9pt; }
In-line CSS style e.g.
<p style="font-family:monospace;">
(强调我的)
使用 mpdf,添加 css 和下面的
$styles = file_get_contents('style.css');
$mpdf->WriteHTML($styles,1);