JSFiddle - React, Tailwind, and code Playground

HTML

<input id="one" type="radio" name="radio_name" value="one" checked>one<br>
<input id="two" type="radio" name="radio_name" value="two">two<br>
<input id="three" type="radio" name="radio_name" value="three">three<br>

CSS

#one {
    position: absolute;
}

#two {
    margin-right: -1em;
}

#three {
    position: relative;
    right: -1em;
}