JSFiddle - React, Tailwind, and code Playground

by blueseal

HTML

<div>
<div title="hello"><span> replace this with "hello"</span></div>
<div title="dear"><span>replace this with "dear" </span></div>
<div title="world"><span>replace this with "world" </span></div>
</div>

CSS

div div[type=title] > span {
  content: attr(title) !important;
}