abbr.Thailand 泰國

html th標籤 語法

作用:定義表格內的表頭單元格。

說明:HTML 表單中有兩種類型的單元格:表頭單元格- 包含表頭資訊(由th 元素建立)標準單元格- 包含資料(由td 元素創建)。 th 元素內部的文本通常會呈現為居中的粗體文本,而 td 元素內的文本通常是左對齊的普通文本。

註解:如果需要將內容橫跨多個行或列,請使用 colspan 和 rowspan 屬性。

html th標籤 範例

<html>
<body>

<table border="1">
  <tr>
    <th>Company</th>
    <th>Address</th>
  </tr>

  <tr>
    <td>Apple, Inc.</td>
    <td>1 Infinite Loop Cupertino, CA 95014</td>
  </tr>
</table>


</body>
</html>

運行實例»

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

<html>
<body>

<table border="1">
  <tr>
    <th>name</th>
    <th>description</th>
  </tr>

  <tr>
    <td>西门大官人</td>
    <td>PHP中文网高级讲师,PHP高级工程师</td>
  </tr>
</table>


</body>
</html>

運行實例»

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

#