html - Radio button display gray out in google chrome -
i use asp.net 4.5.in web application radio buttons display gray in google chrome , white color in firefox.when try find solution got following code overcome this.
input[type="radio"]{ -webkit-appearance: radio; border:none;width:1em;height:1em; }
this not give me solution.also change above style with
input[type="radio"]{ -webkit-appearance: none; }
but radio button display input text radio button image not displaying.
can me one?
Comments
Post a Comment