1

Basically I want a link that has an underline but the tails of the letters cut through it with a small surrounding area of white. Something like this:

enter image description here

Adrian
  • 88
  • 1
  • 5

1 Answers1

1

There's probably a lot of better ways of doing this, but here's my limited attempt at this:

h1 {
  display: inline-block;
  font-size: 60px;
}
h1 span {
  text-decoration: underline;
}
<h1>
  <span>Ja</span>y<span> Reatard</span>
</h1>
David Wilkinson
  • 5,060
  • 1
  • 18
  • 32