JSFiddle - React, Tailwind, and code Playground
by Sahil Batla
HTML
<div class="test-parent">
<p class="test-child">
Test
</p>
</div>
CSS
.test-parent .test-child {
color: #e2d212;
}
.test-child {
color: red;
}
by Sahil Batla
<div class="test-parent">
<p class="test-child">
Test
</p>
</div>
.test-parent .test-child {
color: #e2d212;
}
.test-child {
color: red;
}