CSSライブデモ:text-decoration-style デモボタンをクリックしてみてください!
selector {
    text-decoration-style: solid | double | dotted | dashed | wavy
}
/* キーワード値 */
text-decoration-style: solid;
text-decoration-style: double;
text-decoration-style: dotted;
text-decoration-style: dashed;
text-decoration-style: wavy;

/* グローバル値 */
text-decoration-style: inherit;
text-decoration-style: initial;
text-decoration-style: revert;
text-decoration-style: revert-layer;
text-decoration-style: unset;
<p>テキストデコレーションスタイルの値が wavy です。</p>
p {
    text-decoration: underline;
    text-decoration-color: red;
    text-decoration-style: wavy;
}
実際の適用例