CSSライブデモ:text-underline-position デモボタンをクリックしてみてください!
.underline-under {
    text-decoration: underline;
    text-underline-position: under;
}
CSSライブデモ:text-underline-offset デモボタンをクリックしてみてください!
.underline-offset {
    text-decoration: underline;
    text-underline-offset: 5px;
}
<h4>一般的な下線</h4>
<p>ABC ghij あえい 1234</p>

<h4>精緻な位置と間隔を持つ下線</h4>
<p class="custom-underline">ABC ghij あえい 1234</p>
p {
    text-decoration: underline;
}
.custom-underline{
    text-underline-position: under;
    text-underline-offset: 2px;
}
実際の適用例