<tr>


HTML <tr> 標籤

#實例

<!DOCTYPE html>
<html>
<head> 
<meta charset="utf-8"> 
<title>php中文网(php.cn)</title> 
</head>
<body>

<table border="1">
  <tr>
    <th>Month</th>
    <th>Savings</th>
  </tr>
  <tr>
    <td>January</td>
    <td>0</td>
  </tr>
  <tr>
    <td>February</td>
    <td></td>
  </tr>
</table>

</body>
</html>

執行實例»

點擊"運行實例" 按鈕查看線上實例


瀏覽器支援

1000.png

所有主流瀏覽器都支援< tr> 標籤。


標籤定義並使用說明

<tr> 標籤定義 HTML 表格中的行。

一個 <tr> 元素包含一個或多個 <th> 或<td> 元素。


HTML 4.01 與 HTML5之間的差異

在 HTML 5 中,不支援 <tr> 標籤在 HTML 4.01 中的任何屬性。


屬性

規定表格行的背景顏色。 charnumber
屬性#值描述
alignright
left
center
justify
char
HTML5 不支援。 定義表格行的內容對齊方式。
bgcolorrgb(x,x,x)
#xxxxxx
colorname
HTML5 不支援。 HTML 4.01 已廢棄。
character

#HTML5 不支援。
規定根據哪個字元來進行文字對齊。
charoff
##########HTML5 不支援。 ###規定第一個對齊字元的偏移量。 ############valign######top###middle###bottom###baseline#########HTML5 不支援。 ###規定表格行中內容的垂直對齊方式。 ############

全域屬性

<tr> 標籤支援 HTML 的全域屬性。


事件屬性

<tr> 標籤支援 HTML 的事件屬性。

嘗試 - 實例

表格中的標題
本範例示範如何顯示表格標題。

實例

<!DOCTYPE html>
<html>
<head> 
<meta charset="utf-8"> 
<title>php中文网(php.cn)</title> 
</head>
<body>

<h4>表格使用水平标题:</h4>
<table border="1">
  <tr>
    <th>Name</th>
    <th>Telephone</th>
  </tr>
  <tr>
    <td>Bill Gates</td>
    <td>555 77 854</td>
  </tr>
</table>

<h4>表格使用垂直标题:</h4>
<table border="1">
  <tr>
    <th>First Name:</th>
    <td>Bill Gates</td>
  </tr>
  <tr>
    <th>Telephone:</th>
    <td>555 77 854</td>
  </tr>
</table>

</body>
</html>

運行實例»

點擊"運行實例" 按鈕查看線上實例

空白單元格
本範例示範如何使用" " 處理沒有內容的儲存格。

實例

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"> 
<title>php中文网(php.cn)</title> 
</head>
<body>

<table border="1">
<tr>
  <td>一些文本</td>
  <td>一些文本</td>
</tr>
<tr>
  <td></td>
  <td>一些文本</td>
</tr>
</table>

<p>如果在上面的空单元格中没有边框,你可以插入一个空格 : &nbsp;</p>

</body>
</html>

運行實例»

點擊"運行實例" 按鈕查看線上實例

有標題的表格
本範例示範一個有標題(caption)的表格。

實例

<!DOCTYPE html>
<html>
<head> 
<meta charset="utf-8"> 
<title>php中文网(php.cn)</title> 
</head>
<body>

<table border="1">
  <caption>Monthly savings</caption>
  <tr>
    <th>Month</th>
    <th>Savings</th>
  </tr>
  <tr>
    <td>January</td>
    <td>0</td>
  </tr>
  <tr>
    <td>February</td>
    <td></td>
  </tr>
</table>

</body>
</html>

運行實例»

點擊"運行實例" 按鈕查看線上實例

表格內的標籤
本範例示範如何在其他的元素內顯示元素。

實例

<!DOCTYPE html>
<html>
<head> 
<meta charset="utf-8"> 
<title>php中文网(php.cn)</title> 
</head>
<body>

<table border="1">
  <caption>Monthly savings</caption>
  <tr>
    <th>Month</th>
    <th>Savings</th>
  </tr>
  <tr>
    <td>January</td>
    <td>0</td>
  </tr>
  <tr>
    <td>February</td>
    <td></td>
  </tr>
</table>

</body>
</html>

運行實例»

點擊"運行實例" 按鈕查看線上實例

跨行或跨列的表格儲存格

本範例示範如何定義跨行或跨列的表格儲存格。

實例

<!DOCTYPE html>
<html>
<head> 
<meta charset="utf-8"> 
<title>php中文网(php.cn)</title> 
</head>
<body>

<h4>单元格跨两格:</h4>
<table border="1">
<tr>
  <th>Name</th>
  <th colspan="2">Telephone</th>
</tr>
<tr>
  <td>Bill Gates</td>
  <td>555 77 854</td>
  <td>555 77 855</td>
</tr>
</table>

<h4>单元格跨两列:</h4>
<table border="1">
<tr>
  <th>First Name:</th>
  <td>Bill Gates</td>
</tr>
<tr>
  <th rowspan="2">Telephone:</th>
  <td>555 77 854</td>
</tr>
<tr>
  <td>555 77 855</td>
</tr>
</table>

</body>
</html>

運行實例»

點擊"運行實例" 按鈕查看線上實例


相關文章

HTML 教學:HTML 表格

HTML DOM 參考手冊:Tr 物件