JSFiddle - React, Tailwind, and code Playground
HTML
<div class="tab-component">
<button class="btn" type="button">TEST</button>
<div class="modal-backdrop"></div>
</div>
CSS
.tab-component {
background-color: green;
height: 200px;
position: relative;
width: 500px;
}
.modal-backdrop {
background-color: black;
opacity: 0.5;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
}