Skip to content

一、表格

1. 表格标签

html-01.pngtable的border属性:

  • 为了让表格能够显示边框,<table>标签通常有border属性 html-02.pngtable的caption属性:
  • <caption>是表格的标题,它常常作为<table>的第一个子元素出现 html-03.pngtable的colspan属性:
  • colspan属性用来设置td或者th的列跨度 html-04.pngtable的rowspan属性:
  • rowspan属性用来设置td或者td的行跨度 html-05.pngtable的cellspacing属性:
  • cellspacing属性(使用百分比或像素)定义了两个单元格之间的大小,已经废弃,使用CSS代替它 html-06.png

table的cellpadding属性:

  • cellpadding属性定义了表格单元的内容和边框之间的空间,已经废弃,使用CSS代替它

html-07.pngtable的<th>标签:

  • <th>是标题小格,可以代替td的作用,表示标题小格。

table的<thead>标签:

  • <thead>标签定义表头

table的<thody>标签:

  • <thody>标签定义表核心内容

table的<tfoot>标签:

  • <tfoot>标签定义表脚,通常是汇总行

Released under the MIT License.