gpt4 book ai didi

HTML 对齐文本与
 标签对齐

转载 作者:太空狗 更新时间:2023-10-29 13:34:55 28 4
gpt4 key购买 nike

我对格式和固定宽度的段落内的文本对齐“对齐”有问题,因为我希望 HTML 中的段落文本看起来完全对齐(就像 MS Word 文件一样)。但是,这不会发生。我需要修改什么才能实现它?

     <pre style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: medium; width: 500px; text-align: justify;"> 

I have a problem with the text-align "justify" inside a paragraph with format and fixed width, because I want the paragraph text in HTML to appear totally justified (like it would happen with a MS Word file). However, this does not happen. What I need to modify to achieve it?

</pre>

编辑:如果我替换 <pre><p> 标记标签,我的代码工作正常。有人可以向我解释为什么吗?也许我错误地使用了 <pre>标签。

最佳答案

  pre {
text-align: left;
white-space: pre-line;
}

关于HTML 对齐文本与 <pre> 标签对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8919776/

28 4 0