如何在dompdf中设置字体大小?
How to set font size in dompdf?
我在使用 DomPDF
生成发票时遇到字体大小问题。生成的pdf中字体大小不受影响。
这是css代码
a {
font-family: 'arial';
font-size:15;
}
应该是
a {
font-family: 'arial';
font-size:15px;
}
您忘记在 font-size
中添加 px
或根据您的评论
<a style=" display: inline-block; font-size:15px; text-align: right; width: 100%;"> <?php echo "test";?></a>
我在使用 DomPDF
生成发票时遇到字体大小问题。生成的pdf中字体大小不受影响。
这是css代码
a {
font-family: 'arial';
font-size:15;
}
应该是
a {
font-family: 'arial';
font-size:15px;
}
您忘记在 font-size
px
或根据您的评论
<a style=" display: inline-block; font-size:15px; text-align: right; width: 100%;"> <?php echo "test";?></a>