JSFiddle - React, Tailwind, and code Playground
HTML
<div class="xxx">
<span class="yyy">foo</span>
</div>
<div class="xxx">
<span class="yyy">bar</span>
</div>
CSS
.xxx:contains(foo) {
background: red;
}
<div class="xxx">
<span class="yyy">foo</span>
</div>
<div class="xxx">
<span class="yyy">bar</span>
</div>
.xxx:contains(foo) {
background: red;
}