Hello! I am trying to increase size of radio button using the below css, which works in mozilla but not in chrome.
.rdo
{
margin: 1em 1em 1em 0;
transform: scale(1.3, 1.3);
-moz-transform: scale(1.3, 1.3);
-ms-transform: scale(1.3, 1.3);
-webkit-transform: scale(1.3, 1.3);
-o-transform: scale(1.3, 1.3);
}
<input type="radio" class="rdo"/>
Any Solutions?