使用者工具

網站工具


webdesign:head_rush_html_13

這是本文件的舊版!


Head Rush HTML 讀書筆記

Chapter Thirteen

Table

<table summary="摘要不會顯示在瀏覽器上">
  <caption>
    說明會顯示在瀏覽器上
  </caption>
  <tr>
    <th>標題1</th>
    <th>標題2</th>
  </tr>
  <tr>
    <td>內容1</td>
    <td>內容2</td>
  </tr>
</table>

一個格子占兩列:<td rowspan=“2”> … </td> 一個格子占兩行:<td colspan=“2”> … </td>

CSS 指定巢狀位置

table table th {
  background-color: white;
}

list

  list-style-type: square;
  list-style-image: url(images/list.gif);
webdesign/head_rush_html_13.1186558147.txt.gz · 上一次變更: 2007/08/08 15:29 由 wenpei