While working on a project, I came across the fact that a text-underline-offset property works differently depending on the text-underline-position: under and I can’t understand why
that's what I mean
<p class="first">Paragraph</p>
<p class="second">Paragraph</p>
p{
text-decoration: underline;
text-underline-offset: 10px;
}
.first{
text-underline-position: under;
}
text-underline-offset allows us to set the offset distance of an underline line (-8px | 0 | 7px) while text-underline-position just allows us to set the specific position of the underline (auto | under). I hope these links help us to clear it.
https://developer.mozilla.org/en-US/docs/Web/CSS/text-underline-offset
https://developer.mozilla.org/en-US/docs/Web/CSS/text-underline-position