?
Ce document utilise Manuel du site Web PHP chinois Libérer
CellPadding 屬性用于設置或返回單元格邊框與內容之間的像素數(shù)。
注意:該函數(shù)僅在 RepeatLayout 屬性設置為 "Table" 時有效。
<asp:RadioButtonList CellPadding="pixels" runat="server">
Some Content
</asp:RadioButtonList >
屬性 | 描述 |
---|---|
pixels | 規(guī)定單元格邊框與內容之間的像素數(shù)。 |
下面的實例設置了 RadioButtonList 控件的 CellPadding 屬性:
<form runat="server">
<asp:RadioButtonList id="rb1"
runat="server" CellPadding="15">
Some content
</asp:RadioButtonList>
</form>