--- title: Tables localeTitle: 表格 --- ### 定义HTML表 HTML中的表格由标签定义。 表格中的行由定义。每一行中可以为表头或者数据。 * 表头由标签定义。表头默认为加粗居中。 * 表格数据/单元格用` , `` , `` , ``和``元素。 ### 简单的表格示例 ```html
标签定义 更复杂的HTML表格还可能包含`
` , `
Firstname Lastname Age
Jill Smith 50
Eve Jackson 94
``` [DEMO](https://www.w3schools.com/html/tryit.asp?filename=tryhtml_table) ### 表示具有更多语义信息的示例 ```html
Item Amount
Apple 10
Peach 15
Watermelon 3
``` 结果 Item Amount Apple 10 Peach 15 Watermelon 3 #### 更多信息: [关于HTML的MDN文章](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/table) [标签](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/table)