JSFiddle - React, Tailwind, and code Playground
by GolezTrol
HTML
<div class="container">
<button>Click</button>
<span>Center body text</span>
<span class="buffer"></span>
</div>
CSS
.container {
margin: 0 auto;
text-align: center;
}
span {
display: inline-block;
}
button, .buffer {
width: 70px;
}