JSFiddle - React, Tailwind, and code Playground

HTML

<button class="btn">button</button>
<div class="content"></div>

CSS

.content{
    width: 1000px;
    height: 1000px;
    background: orange;
}

.btn:selection + .content{
    background: blue;
}