JSFiddle - React, Tailwind, and code Playground

by joshmoto

HTML

<div class="unearth">
  Unea<span>r</span><span>.</span>th
</div>

SCSS

.unearth {

  SPAN {
    &:nth-of-type(1) {
      letter-spacing: -1;
    }
    &:nth-of-type(2) {
      letter-spacing: -1;
    }
  }
}