Click here to Skip to main content
15,887,683 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
CSS
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;
            }

blue color is applying in chrome and firefox. not applying in ie .
How i will solve it.
<asp:RadioButton ID="grdSelect" GroupName="ClientName" CssClass="gridRadioButton"  runat="server" ItemStyle-Width="10%"></asp:RadioButton>

This is my asp.net button

In internet explorer it takes bootstrap default color black.
Posted
Updated 21-Dec-15 22:22pm
v4
Comments
ZurdoDev 18-Dec-15 10:16am    
Use IE's dev tools to see what is being applied.
Member 12133978 20-Dec-15 6:58am    
bootstrap default color is obtaining.cannot override the user css

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900