tr标签代表什么
tr是一种HTML语言标签,代表HTML表格中的一行,tr标签是成对出现的,以
html tr标签 语法
作用:定义 HTML 表格中的行。
说明:tr 元素包含一个或多个 th 或 td 元素。
注释:所有浏览器都支持
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>
Das obige ist der detaillierte Inhalt vonWofür steht das tr-Tag?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!