1. 程式人生 > 實用技巧 >table 表格小總結 不足勿怪

table 表格小總結 不足勿怪

<table width="數字px" height="數字px" bgcolor="背景顏色" cellspacing="數字px" cellpadding="數字px" border="邊寬" bordercolor="邊框顏色" rules="行列之間的線" align="left/center/right">
    <caption>標題</caption>
    <thead>
        <tr>
            <th></th>
            <!--注意⭐thead裡的td換成th使用
--> </tr> </thead> <tbody> <tr> <td></td> <td></td> </tr> </tbody> <tfoot> // tr>td*3(快速建立) </tfoot> </table>

cellspacing:單元格間的距離

cellpadding :單元格與元素間的距離

==border=“邊款 實線或虛線 顏色”==

實線:solid;虛線:dotted;

align:模板位置,在表格和模組中使用。

align=“center”;使表格模板居中

==注意==:auto在表格裡不適用,但align在頁面上不能用。

valign:列排列位置:middle(中間)

rules:

rows:行之間的線

cols:列之間的線

all:行和列之間的線

none:沒有線

group:每個格子的線(預設)

都是給td

colspan=“所要合併的單元格的列數”,合併列

rowspan=“所要合併的單元格的行數”,合併行