HTML表格的基本组成:
: 表格标题或摘要 : 表格标题行: 表格数据行主体: 表格脚注行: 一行表格数据 : 表头单元格 : 数据单元格 HTML 中表格的基本组成
表格 (table) 元素是 HTML 中用于创建表格数据的元素。它由几个基本组成部分组成:
元素:
- 定义表格的标题或摘要。
- 位于
元素的第一层。
元素:
- 定义表格的标题行。
- 包含
元素,其中包含表头 ( ) 数据。 元素:
- 定义表格的数据行主体。
- 包含
元素,其中包含表格数据 ( ) 数据。 元素:
- 定义表格的脚注行。
- 包含
元素,其中包含表格汇总或注释数据。
元素:
- 定义一行表格数据。
- 包含
(表头)或 (数据)元素。
元素:
- 定义表头数据单元格。
- 通常居中对齐并加粗显示。
元素:
- 定义数据单元格。
- 可以包含文本、数字、图像或其他 HTML 元素。
示例:
<code class="html"><table> <caption>员工信息</caption> <thead> <tr> <th>姓名</th> <th>职务</th> <th>薪水</th> </tr> </thead> <tbody> <tr> <td>约翰·史密斯</td> <td>经理</td> <td>$50,000</td> </tr> <tr> <td>玛丽·安</td> <td>工程师</td> <td>$40,000</td> </tr> </tbody> </table></code>Copy after loginThe above is the detailed content of The basic composition of table in html. For more information, please follow other related articles on the PHP Chinese website!
source:php.cnStatement of this WebsiteThe content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cnLatest Articles by Author
2024-11-21 18:07:47 2024-11-21 18:07:16 2024-11-21 18:06:52 2024-11-21 15:07:20 2024-11-21 15:07:08 2024-11-21 15:06:54 2024-11-21 15:06:40 2024-11-21 15:03:54 2024-11-21 15:03:44 2024-11-21 15:03:32Latest IssuesHow to display the mobile version of Google Chrome Hello teacher, how can I change Google Chrome into a mobile version?From 2024-04-23 00:22:190112447There is no output in the parent window document.onclick = function(){ window.opener.document.write('I am the output of the child ...From 2024-04-18 23:52:34011949Related TopicsMore>
- How to restore normal printing when the printer is offline
- Which is more difficult, c language or python?
- What is the difference between php5 and php7
- How pycharm runs python files
- What should I do if my QQ account is stolen?
- Window.setInterval() method
- The role of server network card
- How to convert html files to pdf files
Popular RecommendationsPopular TutorialsMore>
JAVA Beginner's Video Tutorial2552035 Latest DownloadsMore>