CSSライブデモ:text-decoration-thickness デモボタンをクリックしてみてください!
selector {
    text-decoration-thickness: auto | from-font | <length-percentage>
}
/* 単一キーワード値 */
text-decoration-thickness: auto;
text-decoration-thickness: from-font;

/* 長さの値 */
text-decoration-thickness: 0.12em;
text-decoration-thickness: 5px;

/* パーセンテージ値 */
text-decoration-thickness: 12%;

/* グローバル値 */
text-decoration-thickness: inherit;
text-decoration-thickness: initial;
text-decoration-thickness: revert;
text-decoration-thickness: revert-layer;
text-decoration-thickness: unset;
<p>テキストデコレーションの太さは5pxです。</p>
p {
    text-decoration-line: underline;
    text-decoration-color: red;
    text-decoration-style: solid;
    text-decoration-thickness: 5px;
}
実際の適用例