用pdfmake对齐文本

时间:2019-07-17 08:22:28

标签: javascript pdf pdfmake

我正在尝试对齐文本,如下面的代码片段所示,一个在最左端,另一个在最右端:

<div>
  <p style="display: flex;">
    <span style="margin-right: auto">At the left</span>
    <span>At the right</span>
  </p>
  <br />
  <p>Some more text</p>
</div>

HTML可以正常工作,但是如何使用pdfmake来做到这一点?我尝试搜索,但是找不到用pdfmake实现相同功能的方法。

1 个答案:

答案 0 :(得分:-1)

每次生成PDF或电子邮件HTML时,都需要使用表格标签

<table style="width:100%">
  <tr>
    <td width="50%">
      At the left
    </td>
    <td width="50%">
      At the right
    </td>
  </tr>
  <tr>
    <td colspan=2>Some more text</td>
  </tr>
</table>