JSFiddle - React, Tailwind, and code Playground
HTML
<div class="hide">foo</div>
<button class="hide fix">foo</button>
<button class="hide">foo</button>
CSS
body * {
display: block;
}
.hide {
background-color: orange;
text-indent: 100%;
white-space: nowrap;
overflow: hidden;
width: 200px;
}
button.hide.fix {
padding: 0;
}