JSFiddle - React, Tailwind, and code Playground

by infous

HTML

<h1>Title <i>hidden text</i></h1>

<p>
  Text <b>hidden text</b>
</p>

<div>
  <i>This text should be shown</i>
</div>

<div>
  <b>This text should be shown.</b>
</div>

CSS

h1 i {
  display: none;
}

p b {
  display: none;
}