abbr.Chad 查德;Tank Destroyer 戰車殲擊手

html td標籤 語法

作用:定義 HTML 表格中的標準儲存格。

說明:HTML 表格有兩類單元格:表頭單元- 包含頭部資訊(由th 元素建立)標準單元- 包含資料(由td 元素建立)td 元素中的文字一般顯示為正常字體且左對齊。

註解:請使用 colspan 和 rowspan 屬性來實作內容橫跨多個行或列。

html td標籤 範例

<html>
<body>

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

</body>
</html>

運行實例»

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

<html>
<body>

<table border="1">
  <tr>
    <th>name</th>
    <th>job</th>
  </tr>
  <tr>
    <td>灭绝师太</td>
    <td>PHP中文网高级讲师</td>
  </tr>
    <tr>
    <td>欧阳克</td>
    <td>PHP中文网讲师</td>
  </tr>
    <tr>
    <td>韦小宝</td>
    <td>PHP中文网初级讲师</td>
  </tr>
</table>

</body>
</html>

運行實例»

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

#