HTML标签

HTML <tr>标签

HTML <tr>标签

HTML 标签用于定义表中的行。 <tr>标签可以包含一个或多个<th>头单元格和<td>数据单元格,以定义一行HTML表。
<tr>标签必须是<table>元素的直接子元素,或者可以是,和<tfoot>元素的嵌套子元素。

语法

<tr>.......</tr>
以下是有关HTML 标签的一些规范
显示 内联
开始标签/结束标签 开始和结束标签
用法 表格内容

示例

 <!DOCTYPE html>
<html>
<head>
<title>HTML tr tag</title>
<style>
table{
border-collapse: collapse;
margin-left: 350px;
}
th,td{
padding: 25px;}
th{
background-color: #005cb9;}
td{
background-color:#98f5ff;}
</style>
</head>
<body>
 <h2>Example of tr tag</h2>
 <table border="1">
  <caption><b>Top Three performers of Winter Olympic Medals</b></caption>
  <tr>
  <th>Rank</th>
  <th>Country</th>
  <th>Total medals</th>
</tr>
<tr>
  <td>1</td>
  <td>Norway</td>
  <td>329</td>
        </tr>
        <tr>
  <td>2</td>
  <td>United State</td>
  <td>282</td>
       </tr>
  <tr>
  <td>3</td>
  <td>Germany</td>
  <td>228</td>
</tr>
 </table>
</body>
</html>
输出:
 HTML tr标签

属性:

标签特定的属性:

属性 说明
align right
left
center
justify
char
它确定表格行中内容的对齐方式。 (HTML5不支持)
bgcolor rgb(x,x,x)
#xxxxx
color_name
它定义表格行的背景色。 (HTML5不支持)
char character 它指定内容与字符的对齐方式。 (HTML5不支持)
charoff number 它指定表行内容将从该字符开始对齐的字符数,并由char属性指定。 (HTML5不支持)
valign Top
Middle
Bottom
baseline
它指定表格行内容的垂直对齐方式。(HTML5不支持)

全局属性:

标签支持HTML中的全局属性。

事件属性:

标签支持HTML中的事件属性。

支持浏览器

元素  chrome浏览器  ie浏览器  firefox浏览器 Opera浏览器  Safari浏览器
<tr>
昵称: 邮箱:
Copyright © 2022 立地货 All Rights Reserved.
备案号:京ICP备14037608号-4