Ss this allow in CSS, if not then how to achieve this criteria. I want to get specific input to be modified for this CSS.
CSS
<style>
input[type=radio name=rbl value=1]{
//something here
}
</style>
HTML
<body>
<input type="radio" name="rbl" value="1" />One // I want this to be modified
<input type="text" name="txt" />
</body>