在ASP中给出文本和广播之间的间距

时间:2010-08-20 10:15:11

标签: asp.net radio-button

如何在ASP.NET中使用Asp:RadioButton控件在单选按钮和文本之间添加间距?

<asp:RadioButton ID="radio1" runat="server" GroupName="Group1" />

4 个答案:

答案 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;我在我面前垫”