CSS 데모: text-decoration-skip-ink 데모 버튼을 클릭해 보세요!
selector {
    text-decoration: underline | overline;
    text-decoration-skip-ink: /* value */;
}
/* 키워드 값 */
text-decoration-skip-ink: auto;
text-decoration-skip-ink: none;

/* 전역 값 */
text-decoration-skip-ink: inherit;
text-decoration-skip-ink: initial;
text-decoration-skip-ink: revert;
text-decoration-skip-ink: revert-layer;
text-decoration-skip-ink: unset;
<h4>text-decoration-skip-ink: auto</h4>
<p class="skip-ink-auto">
    ABCDEF ghijklm 가나다라 12345
</p>
<h4>text-decoration-skip-ink: none</h4>
<p class="skip-ink-none">
    ABCDEF ghijklm 가나다라 12345
</p>
p {
    font-size: 2em;
}
.skip-ink-auto {
    text-decoration: underline blue;
    text-decoration-skip-ink: auto;
}
.skip-ink-none {
    text-decoration: underline red;
    text-decoration-skip-ink: none;
}
실제 적용된 모습

마지막 업데이트 정보: 2025-04-25

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