我有以下单选按钮:
<asp:RadioButtonList ID="rdoBtn" runat="server" AutoPostBack="true" RepeatDirection="Horizontal"
OnSelectedIndexChanged="rdoBtn_SelectedIndexChanged" CssClass ="rdoBtnItemSpacing">
<asp:ListItem Text="Regular" Value="False" Selected="True" >
</asp:ListItem>
<asp:ListItem Text="Special" Value="True"></asp:ListItem></asp:RadioButtonList>
当我运行应用程序时,项目间隔很远,我想因为行非常宽。如何让物品保持相当接近,谢谢。
答案 0 :(得分:1)
我发现首先应该制作
RepeatLayout ="Flow"
并在CSS类中
.rdoBtnItemSpacing label{
margin-right:30px;
}
这篇文章帮助了我: http://forums.asp.net/t/1364321.aspx?RadioButtonList+control+space+between+buttons