[PHP典型模塊與項目實戰大全]-第一章(TABLE表格標記)
[PHP典型模塊與項目實戰大全]-第一章(TABLE表格標記)
TABLE表格標記
<table>
<tr> <!– 列 –>
<th></th><!– 表格頭 –>
<th></th><!– 表格頭 –>
<th></th><!– 表格頭 –>
</tr>
<tr> <!– 列 –>
<td></td><!– 行 –>
<td></td><!– 行 –>
<td></td><!– 行 –>
</tr>
</table>
屬性 |
說明 |
<table bgcolor=””> |
設定背景顏色 |
<table border=””> |
設定邊框寬度,不設定預設為0 |
<table bordercolor=””> |
設定邊框顏色 |
<table bordercolorlight=””> |
設定邊框明亮顏色,border要>1 |
<table bordercolordark=””> |
設定邊框昏暗顏色,border要>1 |
<table cellspacing=””> |
設定格子間的間隔 |
<table cellpadding=””> |
設定格子和邊框間隔 |
<table width=””> |
設定格子寬度 |
tr屬性
<tr align> |
水平對齊:left、center、right |
<tr valign> |
垂平對齊:top、middle、bottom |
td /th 屬性
<td width> |
格子寬度:像素、百分比 |
<td colspan> |
格子的跨距,預設=1 |
<td rowspan> |
格子的跨占行數,預設=1 |
<td nowrap> |
禁止自動斷航 |