我有一个垂直的radiobuttonList坐在一张桌子里。
如何减少每个列表项之间的间距,以使radiobuttonList的总高度更小?
我尝试过使用填充和边距但似乎没有效果。
答案 0 :(得分:2)
使用CellPadding
的{{1}}属性,您可以将0设置为最小高度
RadioButtonList
答案 1 :(得分:2)
你可以在radiobuttonlist标签内添加:
<asp:RadioButtonList ID="RadioButtonList1" runat="server" Width="300px">
答案 2 :(得分:0)
表中的radiobuttonList因此请尝试cellspacing="0" cellpadding="0"
和padding:0;
以获取td
答案 3 :(得分:0)
如果此w3schools demo显示准确的标记,则看起来它们是在表格中构建的。试试这个:
.someClassName td {
padding: 0;
margin: 0;
}
用.someClassName
或其他包装对象的CssClass
替换RadioButtonList
。
答案 4 :(得分:0)
我将radiobuttonlist更改为使用RepeatLayout="Flow"
而不是RepeatLayout="Table"
例如:
<asp:RadioButtonList ID="radOrderBy" runat="server" AutoPostBack="True" RepeatLayout="Flow" >
<asp:ListItem Value="NAME" Text="Name" Selected="True" />
<asp:ListItem Value="NUMBER" Text="Number" />
</asp:RadioButtonList>