JSFiddle - React, Tailwind, and code Playground

by OliverJAsh2

HTML

This is some text <button>with a link</button> and <br>
other stuff to check if they get pushed around<br>
by the size of the link.

CSS

button{position:relative;z-index:50;}
button:before{
    position:absolute;
    content:'';
    top:-10px;
    right:-10px;
    left:-10px;
    bottom:-10px;
    outline:1px solid red;
    z-index:40;
}