CSS 데모: text-decoration-style 데모 버튼을 클릭해 보세요!
selector {
    text-decoration-line: underline;
    text-decoration-style: /* value */
}
<p>텍스트 데코레이션 스타일 값이 wavy입니다.</p>
p {
    text-decoration: underline;
    text-decoration-color: red;
    text-decoration-style: wavy;
}
실제 적용 모습

caniuse.com에서 더 자세한 정보를 확인해 보세요.