如何在ASP.NET中使用Asp:RadioButton控件在单选按钮和文本之间添加间距?
<asp:RadioButton ID="radio1" runat="server" GroupName="Group1" />
答案 0 :(得分:10)
尝试:
<asp:RadioButton ID="radio1" CssClass="Space" runat="server" GroupName="Group1" />
和CSS:
.Space label
{
margin-left: 20px;
}
在这里工作......
答案 1 :(得分:6)
使用CSS:
input[type="radio"]
{
margin-right: 2px;
}
或者:
input[type="radio"] + label
{
margin-left: 2px;
}
答案 2 :(得分:1)
你的文字在哪里?使用radiobutton的标签或在按钮周围的CSS中放置一些边距。
答案 3 :(得分:0)
另一种有效的方法是在radiobutton的text属性之前加上&amp; nbsp;像这样的符号Text =“&amp; nbsp;我在我面前垫”