JSFiddle - React, Tailwind, and code Playground
by Manju06
HTML
<head>
<style>
span {
font-size: 8pt;
}
</style>
</head>
<table>
<td>
<td> Choose >>> </td>
<td>
<input name="vid" type="radio" id="foo" checked>
<span>
this text is too low, I want it centered with the radio button
</span>
</td>
</table>
CSS
table{
width:100%;
}
td{
display: flex;
align-items:center;
}