Home  >  Article  >  Web Front-end  >  What does the tr tag stand for?

What does the tr tag stand for?

云罗郡主
云罗郡主Original
2019-02-21 16:12:3522570browse

tr标签代表什么

tr是一种HTML语言标签,代表HTML表格中的一行,tr标签是成对出现的,以a34de1251f0d9fe1e645927f19a896e8开始,fd273fcf5bcad3dfdad3c41bd81ad3e5结束,并且tr元素包含一个或多个th或td元素。

html tr标签 语法

作用:定义 HTML 表格中的行。

说明:tr 元素包含一个或多个 th 或 td 元素。

注释:所有浏览器都支持 a34de1251f0d9fe1e645927f19a896e8 标签。

html tr标签 示例

<html>
<body>
<table border="1">
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
</table>
</body>
</html>


The above is the detailed content of What does the tr tag stand for?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The 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.cn