JSFiddle - React, Tailwind, and code Playground
HTML
<a href="#" class="button">Hide Text</a>
CSS
a.button:before {
content: "Show Text";
}
a.button:not(:before) {
display: none;
}
<a href="#" class="button">Hide Text</a>
a.button:before {
content: "Show Text";
}
a.button:not(:before) {
display: none;
}