JSFiddle - React, Tailwind, and code Playground
HTML
<input type="radio" name="rbl" value="1" />One // I want this to be modified
<br/>
<br/>
<input type="radio" name="rbl"/>2 not modified
<br/>
<input type="radio" value="1" />3 not modified
<br/>
<input type="text" name="txt" />
CSS
input[type='radio'][name='rbl'][value='1']{
margin-right:100px;
}