JSFiddle - React, Tailwind, and code Playground
HTML
<button>Hello</button>
CSS
button {
background-color: green;
color: black;
padding: 5px;
}
button {
visibility: hidden;
}
button:after {
content:'goodbye';
visibility: visible;
display: block;
position: absolute;
background-color: red;
padding: 5px;
top: 2px;
}