ASP.NET CellSpacing 属性
定义和用法
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>
实例
- 为 Table 控件设置 CellSpacing 属性