JSFiddle - React, Tailwind, and code Playground
HTML
<div>
<button>Qlick me</button>
</div>
CSS
div {
position: relative;
width: 200px;
height: 200px;
background-color: #eee;
border: 1px solid black;
z-index: 0;
}
div:active {
background-color: red;
}
button:active::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #eee;
z-index: -1;
}