ASP.NET CellSpacing 属性

定义和用法

CellSpacing 属性用于设置或返回表格中单元格的间距(以像素计)。

注释:该属性在 FireFox 中无效。

语法

  1. <asp:Table CellSpacing="px" runat="server">
  2. Some Content
  3. </asp:Table>
属性 描述
px 规定单元格的间距(以像素计)。

实例

下面的例子设置了 Table 控件的 CellSpacing 属性:

  1. <form runat="server">
  2. <asp:Table id="tab1" runat="server" CellSpacing="30">
  3. <asp:TableRow>
  4. <asp:TableCell>
  5. Hello!
  6. </asp:TableCell>
  7. </asp:TableRow>
  8. </asp:Table>
  9. </form>

实例

  • 为 Table 控件设置 CellSpacing 属性