0

我在 Node.js 中使用 html-pdf 将 html 文本转换为 pdf。文本对齐:左、中、右工作。但是 text-align: justify 不起作用。当 text-align 对齐时,它会导出左对齐的文本。

这是HTML代码:

<p class="ql-align-justify"><span style="background-color: rgb(255, 255, 255);">Hello, this is some text. Hello, this is some text. Hello, this is some text. Hello, this is some text. Hello, this is some text. Hello, this is some text. Hello, this is some text. Hello, this is some text. </span></p>

这是CSS代码:

      .ql-align-justify {
          text-align: justify;
      }

如何使 text-align: justify 工作?

4

1 回答 1

0

似乎您需要将 WIDTH 设置为您的跨度,这将有所帮助。

于 2020-01-15T13:42:33.720 回答