我想通过 < p > 循环并调整每个自动(!)和 < br> 换行符的大小小于例如。85% 但更大 50% 仅在字/字母间距为父容器的 100% 宽度的情况下 - 如果它不是 < p > 之前的最后一行。
所以当我有:
<div width="200px"><p>
This will be displayed in a monospaced font. The first four spaces
will be stripped off, but all other whitespace will preserved.<br />
will be off, but all other whitespace will preserved.<br />
Markdown and HTML are off in code blocks:<br />
This is not italic</i>, [this is not a link](http://example.com)
This is not italic</i>, [this is a link](http://example.com)
End of it.
</p></div>
应该:
...<p>
This will be displayed in a monospaced font. The first four spaces
will be stripped off, but all other whitespace will preserved.<br />
will be off, but all other whitespace will preserved.<br />
Markdown and HTML are off in code blocks:<br />
This is not italic</i>, [this is not a link](http://example.com)
This is not italic</i>, [this is a link] (http://example.com)
End of it.
</p>...
当我使用 text-align justify 时,没有添加字间距,我想要一个“真实”的对齐文本。我现在真的搜索了很多天,但我没有找到任何我想要的代码。
也许有人可以帮助我:)