JSFiddle - React, Tailwind, and code Playground

by Kolichikov

HTML

<div class="nesting-class">
<div>
  <a href='www.google.ca'>
    <div>
      <img src="~/img/test.png" />
      <span>Test</span>
    </div>
  </a>
</div>
</div>

CSS

a{
  color: blue;
}

.nesting-class
{
  color:red !important;
}