JSFiddle - React, Tailwind, and code Playground
HTML
<div class="answers">
<label>
<input type="radio" name="answers" value="male" /> All
</label>
<label>
<input type="radio" name="answers" value="female" /> Name
</label>
<label>
<input type="radio" name="answers" value="male" /> Vendor No.
</label>
</div>
CSS
.answers label {
display: block;
font-size: 20px;
margin: 0 auto;
width: 150px;
}
.answers {
width: 100%;
}