Kevin Powell - CommunityKP-C
Kevin Powell - Community2y ago
31 replies
Neo

Underline Bug

I don't know why underline gets thinner then it gets bold even though it is thickness set to 5px:
.your-ruleset-here {
  text-decoration: underline;
  text-underline-offset: 0.5em;
  text-decoration-thickness: 5px;
  padding: 5px;
  transition: text-underline-offset 1s ease;

  &:hover {
    text-underline-offset: 1em;
  }
}


Tested on Safari
Was this page helpful?