跳至內容
Sars' History
使用者工具
登入
網站工具
工具
顯示頁面
舊版
反向連結
最近更新
多媒體管理器
網站地圖
登入
最近更新
多媒體管理器
網站地圖
足跡:
•
xwindow
•
debian_install
•
makefile
webdesign:head_rush_html_13
本頁是唯讀的,您可以看到原始碼,但不能更動它。您如果覺得它不應被鎖上,請詢問管理員。
====== Head Rush HTML 讀書筆記 ====== ===== Chapter Thirteen ===== ==== Table ==== <code> <table summary="摘要不會顯示在瀏覽器上"> <caption> 說明會顯示在瀏覽器上 </caption> <tr> <th>標題1</th> <th>標題2</th> </tr> <tr> <td>內容1</td> <td>內容2</td> </tr> </table> </code> 一個格子占兩列:<td rowspan="2"> ... </td> 一個格子占兩行:<td colspan="2"> ... </td> ==== CSS 指定巢狀位置 ==== <code> table table th { background-color: white; } </code> ==== CSS 屬性選擇符 ==== 挑選 XHTML 中附有 width 屬性的所有 img。alt 中有 flowers 關鍵字的。 <code> img[width] { border: balck; } img[alt~="flowers"] { border: thin; } </code> ==== list ==== <code> list-style-type: square; list-style-image: url(images/list.gif); </code> ===== Chapter Forteen ===== ==== form ==== <code> <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> </code>
webdesign/head_rush_html_13.txt
· 上一次變更: 2007/08/08 15:55 由
wenpei
頁面工具
顯示頁面
舊版
反向連結
回到頁頂