JSFiddle - React, Tailwind, and code Playground

by 규연 황

HTML

<a href="" class="skip-ink-none">paragraph</a>
<a href="" class="skip-ink-auto">paragraph</a>
<a href="" class="underline">hogmep</a> 
Lorem ipsum dolor sit amet, consectetur adipifffsicing elit. Reprehenderit, nostrum.

CSS

a {
  font-size: 40px;
}
a.skip-ink-none {
  text-decoration-skip-ink: none;
  /* text-decoration: underline; */
}
a.skip-ink-auto {
  text-decoration-skip-ink: auto;
  /* text-decoration: underline; */
}
a.underline {
  /* text-decoration-skip-ink: auto; */
  text-decoration: underline;
}