CellSpacing 属性用于设置或返回表格中单元格的间距(以像素计)。
注释:该属性在 FireFox 中无效。
<asp:Table CellSpacing="px"
runat="server">
Some Content
</asp:Table>
属性 | 描述 |
---|---|
px | 规定单元格的间距(以像素计)。 |
下面的例子设置了 Table 控件的 CellSpacing 属性:
<form runat="server">
<asp:Table id="tab1" runat="server" CellSpacing="30"
>
<asp:TableRow>
<asp:TableCell>
Hello!
</asp:TableCell>
</asp:TableRow>
</asp:Table>
</form>