table表格使用程式碼例項
分享一段程式碼例項,它演示了使用table製作表格的功能。
程式碼例項如下:
[HTML] 純文字檢視 複製程式碼<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <style type="text/css"> table{ margin: 0px 20px 0px 20px; border:solid thin black; border-collapse: collapse; caption-side:bottom; } td,th{ border: thin dotted gray; padding: 5px; } th{ background-color: #cc6600; } caption{ font-style: italic; padding-top: 8px; } tr:nth-child(odd){ background-color: #fcba7a; } td table th{ background-color: white; } </style> </head> <body> <table> <caption>The cities I visited on my Segway's USA travels</caption> <tr> <th>City</th> <th>Date</th> <th>Temperature</th> <th>Altitude</th> <th>Population</th> <th>Diner Rating</th> </tr> <tr> <td>Walla Walla, WA</td> <td class="center">June 15th</td> <td class="center">75</td> <td class="right">1,204 ft</td> <td class="right">29,686</td> <td class="center">4/5</td> </tr> <tr class="cellcolor"> <td>Magic City, ID</td> <td class="center">June 25th</td> <td class="center">74</td> <td class="right">5,312 ft</td> <td class="right">50</td> <td class="center">3/5</td> </tr> <tr> <td>Bountiful, UT</td> <td class="center">July 10th</td> <td class="center">91</td> <td class="right">4,226 ft</td> <td class="right">41,173</td> <td class="center">4/5</td> </tr> <tr class="cellcolor"> <td>last chance, CD</td> <td class="center">July 23th</td> <td class="center">102</td> <td class="right">4,780 ft</td> <td class="right">256</td> <td class="center">3/5</td> </tr> <tr> <td rowspan="2" >Thuth or consequences, NM</td> <td class="center">August 9th</td> <td class="center">93</td> <td rowspan="2" class="right">4,242ft</td> <td rowspan="2" class="right">7,289</td> <td class="center">5/5</td> </tr> <tr> <td class="center">August 27th</td> <td class="center">98</td> <td class="center"> <table> <tr> <td>Tess</td> <td>5/5</td> </tr> <tr> <td>Tony</td> <td>4/5</td> </tr> </table> </td> </tr> <tr class="cellcolor"> <td>Why, AZ</td> <td class="center">August 18th</td> <td class="center">104</td> <td class="right">860ft</td> <td class="right">480</td> <td class="center">3/5</td> </tr> </table> </body> </html>
相關文章
- table表格美化程式碼例項
- js table表格排序程式碼例項JS排序
- table細線表格例項程式碼
- jQuery操作表格table程式碼例項jQuery
- table表格隔行變色程式碼例項
- jQuery table表格隔行換色程式碼例項jQuery
- js table表格操作大全程式碼例項JS
- 檢索table表格資料程式碼例項
- javascript生成指定行列table表格程式碼例項JavaScript
- javascript動態操作table表格程式碼例項JavaScript
- 刪除table表格行和列程式碼例項
- 獲取table表格有多少列程式碼例項
- table表格單元格合併程式碼例項
- javascript新增或者刪除table表格行程式碼例項JavaScript行程
- js迭代table表格的行和列程式碼例項JS
- js動態新增和刪除table表格行程式碼例項JS行程
- js 將xml轉換為table表格簡單程式碼例項JSXML
- javascript動態建立指定行與列table表格程式碼例項JavaScript
- javascript動態刪除或者新增table表格行程式碼例項JavaScript行程
- table表格的thead、tbody和tfoot應用程式碼例項
- 將table表格內容匯入到word或者Excel程式碼例項Excel
- 滑鼠滑過實現table表格行背景變色程式碼例項
- js動態建立table表格和刪除指定行列程式碼例項JS
- table表格單元格橫向和屬性合併程式碼例項
- css細線表格程式碼例項CSS
- table表頭分組程式碼例項
- js遍歷迭代table表格的每一個td單元格程式碼例項JS
- js獲取table表格指定行和列的單元格內容程式碼例項JS
- 表格行背景交替變色例項程式碼
- jQuery刪除表格指定行程式碼例項jQuery行程
- 點選刪除表格行程式碼例項行程
- easyui-table表格客戶端分頁例項UI客戶端
- js table隔行變色效果程式碼例項JS
- css table細線表格程式碼CSS
- 表格實現標題合併程式碼例項
- $$和||使用程式碼例項
- 將表格資料匯入Excel表程式碼例項Excel
- js將表格匯入到Execel表例項程式碼JS