input[type='radio'] {
-webkit-appearance: none;
width: 13px;
height: 13px;
border-radius: 50% !important;
border: 1px solid darkgray;
outline: none;
box-shadow: 0 0 5px 0px gray inset !important;
}
input[type='radio']:before {
content: '';
display: block;
width: 60%;
height: 60%;
margin: 20% auto;
border-radius: 50% !important;
}
input[type='radio']:checked:before {
background: #0073CF !important;
}
0073CF color is applying in chrome and firefox. not applying in Explorer . How i will solve it.
<asp:RadioButton ID="grdSelect" GroupName="Name" CssClass="gridRadioButton" runat="server" ItemStyle-Width="10%"></asp:RadioButton>
This is my asp.net button
In internet explorer it takes default color black.How will i change the color into blue?