2013-04-03 149 views

回答

1

使用CellPaddingRadioButtonList屬性,你可以在一個表中的最低高度設定爲0

<asp:RadioButtonList ID="rdlst" runat="server" CellPadding="15" CellSpacing="0" ><asp:ListItem Value="1" Text="1"></asp:ListItem> <asp:ListItem Value="2" Text="2"></asp:ListItem></asp:RadioButtonList> 
0

單選按鈕列表,以便爭取TD也

0

提供cellspacing="0" cellpadding="0"padding:0;w3schools demo證明準確標記,它看起來像是建在一張桌子上。試試這個:

.someClassName td { 
    padding: 0; 
    margin: 0; 
} 

RadioButtonListCssClass或其他一些包裝對象更換.someClassName

2

你可以添加這個在RadioButtonList標籤中:

<asp:RadioButtonList ID="RadioButtonList1" runat="server" Width="300px"> 
+0

的寬度的標籤?這將如何調整列表項之間的垂直間距? – PTansey

0

我更改爲使用RepeatLayout="Flow"代替RepeatLayout="Table"

在RadioButtonList如:

<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> 
相關問題