JSFiddle - React, Tailwind, and code Playground

by bhatnagar018

HTML

<div class="container">
  <div class="header">
    Hello H1
    <h1 class="header">
      Hello H1
    </h1>
  </div>
</div>

<h2 class="header">
  Hello H2
</h2>

CSS

.header{
	text-decoration: line-through; 
}

.container & .header{
	text-decoration: underline;
}