我在 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 工作?