使用者工具

網站工具


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);

Chapter Forteen

form

<form action="contest.php" method="POST">
<input type="text" name="firstname" value="" />
<textarea name="comments" rows="10" cols="40">Default Value</textarea>
<input type="submit" />
</form>
webdesign/head_rush_html_13.1186559254.txt.gz · 上一次變更: 2007/08/08 15:47 由 wenpei