HTML 中的句子中的字距可以更紧吗?

Is kerning letters tighter within a sentence in HTML possible?

在网页上,我在第一段开头的 14pt "h" 旁边有 24pt "T"。我想将 "h" 滑动到 "T" 的顶栏下方。我知道在线

<span style="LETTER-SPACING: 2px;">

增加距离,但“-2”不会减去 space。没有字母间距代码的实际代码当前显示为

<P><span style='font-size:24.0pt;font-family:"Times Roman","serif"'>T</span>h [.....]</P>

有没有办法做我想做的事?现在看起来像这样。 the-jpg

span 上设置 margin-right: -2px 对我有用。

With negative margin

Original, without negative margin

https://codepen.io/bkdigital/pen/ZEEpzNE - 演示

<P>T<span style="margin-left:-4px">here is nothing</span></P>

p {font-size:24.0pt;font-family:"Times Roman","serif";
  & span {
    font-size: 14pt;
  }}