.
3ss.cn

css中tr是什样意思

在css中,tr的意思是表格中的行,语法格式为“<tr>表格内容及表格元素</tr>”。tr标签定义HTML表格中的行,一个tr元素包含一个或多个th或td元素。

本教程操作环境:windows7系统、CSS3&&HTML5版、Dell G3电脑。

<tr> 标签定义 HTML 表格中的行。

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

实例:

<html>
<body>

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

</body>
</html>

效果

赞(0)
未经允许不得转载:互联学术 » css中tr是什样意思

评论 抢沙发