JSFiddle - React, Tailwind, and code Playground

by karthick6891

HTML

<div class="box1">

</div>
<div class="box2">

</div>

CSS

.box1,.box2{
  width: 100px;
  height: 100px;
  margin: 5px;
}


.box1{
  background-color: red;
}

.box2 {
  background-color: green;
}

/* change box2's color to red; dont use !important , dont duplicate the same selector, no inline styles and no javascript */


.box1 + .box2 {
  
}