JSFiddle - React, Tailwind, and code Playground

by Soviut

HTML

<h1><span>
This is a title that will wrap around when it gets too longer and it will be too long very soon</span></h1>

CSS

h1 {
  display: inline;
  line-height: 0.5em;
  background: cornflowerblue;
  box-shadow: 0 0 0 10px cornflowerblue;
}

h1 > span {
    position: relative;

}