Caption html意思
在HTML中,caption
元素用於為表格(<table>
)提供標題或說明。它通常位於表格的<tbody>
元素之前,位於<table>
元素的開始標籤和結束標籤之間。
下面是一個簡單的HTML表格示例,其中包含一個caption
元素:
<table>
<caption>學生成績表</caption>
<thead>
<tr>
<th>姓名</th>
<th>數學</th>
<th>語文</th>
<th>英語</th>
</tr>
</thead>
<tbody>
<tr>
<td>張三</td>
<td>90</td>
<td>85</td>
<td>95</td>
</tr>
<tr>
<td>李四</td>
<td>85</td>
<td>90</td>
<td>80</td>
</tr>
</tbody>
</table>
在這個例子中,<caption>
元素的內容是「學生成績表」,它為表格提供了標題。
請注意,caption
元素只能用於<table>
元素,並且只能有一個caption
元素屬於一個特定的<table>
。