1. 程式人生 > >table 標籤相關含義

table 標籤相關含義

表格的標籤及含義:
<table border="1" cellspacing="10" cellpadding="10" bgcolor="red">

<tr>

  <th align="left">首列</th>

</tr>

<tr>

  <td></td>//列

</tr>//行

</table>

註釋:

table是表格,最外面包括著的標籤。

tr是行,有幾個就是幾行,包括著td標籤

td是列,有幾個就是幾列

th是加粗行的列的開頭,同td的位置一樣,都是被td包

border是table屬性,代表邊框,數字為0,就沒有邊框,數字越大,邊框越寬

cellspacing是單元格之間的間距

cellpadding是單元格和外邊框的距離

bgcolor是背景顏色

align是位置

    例如:載入顏色視窗:<input id="input-line-color" value="#cc0000" type="color">