JSFiddle - React, Tailwind, and code Playground
HTML
<br />
<button>IE Moving Text Button</button>
<br /><br />
<button><span>IE Non-Moving Text text</span></button>
CSS
button {
color: white;
background-color: blue;
border: none;
}
button:active span,
button:focus span
{
position: relative;
top: 0px;
left: 0px;
}