【问题标题】:CSS is not working with radio button in asp.netCSS 不适用于 asp.net 中的单选按钮
【发布时间】:2012-09-11 11:46:55
【问题描述】:

我尝试在 css 下方显示单选按钮中的图像,但以下 css 无法正常工作。请帮助。

.RadioButton
{
    background-image: url(../images/radio.png);
}


<asp:RadioButton ID="RadioButton1" runat="server" CssClass="RadioButton"/>

【问题讨论】:

标签: asp.net css radio-button


【解决方案1】:

您不能单独使用 CSS 设置单选按钮的样式,因为它们的外观是由操作系统决定的,而不是由浏览器决定的。您将不得不使用 Javascript 插件来允许它。

As you can see here,图片在&lt;img&gt;标签内加载,但不作为单选按钮的背景图片。

您可以使用插件like this one 来设置这些元素的样式。

【讨论】:

猜你喜欢
  • 1970-01-01
  • 2018-05-17
  • 2011-06-15
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2020-10-03
  • 2020-06-29
  • 2020-03-15
相关资源
最近更新 更多