c# – 如何在RadioButtonList asp.net控件的列表项之间添加空格?

前端之家收集整理的这篇文章主要介绍了c# – 如何在RadioButtonList asp.net控件的列表项之间添加空格?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

花了一些时间在谷歌上搜索问题并尝试了一些我似乎无法找到解决方案.我有一个RadioButtonList控件,如下所示:

dioButtonList ID="rblCheck" runat="server" RepeatDirection="horizontal">
dioButtonList>

现在,当我在浏览器中查看它时,两个按钮非常接近.有什么方法让我把它们分开吗?我尝试了margin-left css但是没有对它进行排序.任何建议都会很棒.谢谢.

最佳答案
你可以通过很多方式做到这一点.例如,您可以设置RadioButtonList控件的CssClass属性.往下看.

dioButtonList ID="rblCheck" runat="server" RepeatDirection="horizontal" CssClass="spaced">
dioButtonList>

然后在你的css声明中你可以像这样定义间隔类

.spaced input[type="radio"]
{
   margin-right: 50px; /* Or any other value */
}

或者,如果您希望对列表项使用不同的间距,可以通过这种方式为每个列表项指定样式属性来实现

dioButtonList ID="rblCheck" runat="server" RepeatDirection="horizontal">
dioButtonList>
原文链接:https://www.f2er.com/css/427203.html

猜你在找的CSS相关文章