I have to radio button and i want to make for each one a text value, some think like yes and no.
<input type="radio" name="tabGroup1" id="rad1" class="tab1" checked="checked"/>
<input type="radio" name="tabGroup1" id="rad2" class="tab2"/>
I want to khnow if i can just with CSS make a text for these radios?
like :
.tab1{
content:'Yes';
}
.tab2{
content:'No';
}