表格元素
table
·表格數(shù)據(jù)
- 通過二維數(shù)據(jù)表表示的信息
- 不應該作為布局使用
·屬性 - border (邊框)
caption
表示表格的標題
colgroup
表示表格中的一組列表
-span 默認為1调鬓,表示n列列表
col
定義列上所有公共單元格上的公共語義
-span 默認為1,表示n列列表
tbody
表示表格中一系列行數(shù)據(jù)
子元素只能是tr
可出現(xiàn)多個
thead
定義表格列頭的行
tfoot
定義表格列簡介的行
按照thead tbody tfoot順序顯示,不管代碼中書寫的順序
tr
表示表格中的行
td
表示表格中的單元格
-colspan 表示跨列
-rowspan 表示跨行
-headers 和單元格相關的th的id
th
表示單元格的標題(表頭)
-colspan 表示跨列
-rowspan 表示跨行
-headers 和單元格相關的th的id
-scope 表示單元格是某一行氯窍,某一列,某一行組,某一列組的頭,只有語義上的效果翅娶,沒有視覺效果
·row
·col
·rowgroup
·colgroup
·auto
<table border="1">
<thead>
<tr><th>區(qū)域</th><th>寄達地</th><th>首重 (元/1000g)</th><th>續(xù)重(元/1000g)</th></tr>
</thead>
<tbody>
<tr><th rowspan="2">一區(qū)</th><td>浙江、上海好唯、江蘇</td><td>6</td><td>1</td></tr>
<tr><td>江西竭沫、安徽</td><td>7</td><td>1</td></tr>
<tr><th>二區(qū)</th><td>北京、天津渠啊、河北</td><td>9</td><td>4</td></tr>
<tr><th>三區(qū)</th><td>遼寧输吏、甘肅、四川</td><td>10</td><td>4</td></tr>
<tr><th>四區(qū)</th><td>吉林替蛉、黑龍江、云南</td><td>10</td><td>6</td></tr>
<tr><th>五區(qū)</th><td>新疆拄氯、西藏</td><td>15</td><td>10</td></tr>
</tbody>
</table>
<table border="1">
<thead><tr><th></th><th>時間</th><th>星期一</th><th>星期二</th><th>星期三</th><th>星期四</th><th>星期五</th></tr></thead>
<tbody>
<tr><th rowspan="3" scope="rowgroup">上午</th><th scope="row">8:00-8:45</th><td>語文</td><td>數(shù)學</td>…</tr>
<tr><th scope="row">9:00-9:45</th><td>數(shù)學</td><td>數(shù)學</td>…</tr>
<tr><th scope="row">10:00-10:45</th><td>活動</td><td>數(shù)學</td>…</tr>
<tr><th rowspan="2" scope="rowgroup">下午</th><th scope="row">13:00-13:45</th><td>英語</td><td>數(shù)學</td>…</tr>
<tr><th scope="row">14:00-14:45</th><td>勞動</td><td>數(shù)學</td>…</tr>
</tbody>
</table>