JSFiddle - React, Tailwind, and code Playground
by j08691
HTML
<div id="border-overlay">
</div>
<a id="button" href=""> ... </a>
CSS
#border-overlay {
position: absolute;
z-index: 100;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
box-sizing: border-box;
border: solid 8px white;
pointer-events: none;
}
#button {
position: absolute;
display: block;
top: 0;
left: 0;
height: 100%;
width: 100%;
background-color: rgba(0, 0, 0, 0);
z-index: 15;
}