【发布时间】:2016-01-13 15:28:42
【问题描述】:
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 颜色在 chrome 和 firefox 中应用。不适用于 Explorer 。 我将如何解决它。
<asp:RadioButton ID="grdSelect" GroupName="Name" CssClass="gridRadioButton" runat="server" ItemStyle-Width="10%"></asp:RadioButton>
这是我的 asp.net 按钮
在 Internet Explorer 中默认颜色为黑色。如何将颜色更改为蓝色?
【问题讨论】:
标签: css internet-explorer cross-browser