JSFiddle - React, Tailwind, and code Playground

by Michael Lajlev

HTML

<div class="ie8">
  <p>This is a <span>test</span></p>
</div>

SCSS

p {
  font-size:2em;
  
  span {
    color:blue;    

    .ie8 & {
       color:pink;
    }
  }
}