HTML表格标题
caption
元素允许您定义一个标题并将其与table
元素相关联。
align
属性已过时。
例子
以下代码显示了正在使用的caption
元素。
<!DOCTYPE HTML> <html> <head> </head> <body> <table> <caption>Results of the Survey</caption> <tbody> <tr> <th>Favorite:</th> <td>500</td> </tr> </tbody> </table> </body> </html>点击查看实例
表只能包含一个 caption
元素,但不一定是表中包含的第一个元素。