DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> HTML基礎知識 >> HTML和Xhtml >> 詳解HTML中table表格的frame和rules屬性
詳解HTML中table表格的frame和rules屬性
編輯:HTML和Xhtml     

table標簽的frame和rules屬性,可以控制邊框的顯示。frame屬性控制著表格最外圍的四條邊框的可見性,而 rules 則控制著表格內部邊框的可見性。
frame屬性可取的值及含義如下:
* void - 默認值。表示不顯示表格最外圍的邊框。
* box - 同時顯示四條邊框。
* border - 同時顯示四條邊框。
* above - 只顯示頂部邊框。
* below - 只顯示底部邊框。
* lhs - 只顯示左側邊框。
* rhs - 只顯示右側邊框。
* hsides - 只顯示水平方向的兩條邊框。
* vsides - 只顯示垂直方面的兩條邊框。
rules 屬性可取的值有五個,分別是:
* none - 默認值。無邊框。
* groups - 為行組或列組加邊框。
* rows - 為行加邊框。
* cols - 為列加邊框。
* all - 為所有行列(單元格)加邊框


代碼示例:

XML/HTML Code復制內容到剪貼板
  1. <table border="1" width="600" frame="hsides" rules="groups">  
  2.      <caption>My Ultimate Table</caption>  
  3.      <colgroup span="1" width="200"></colgroup>  
  4.      <colgroup span="3" width="400"></colgroup>  
  5.   
  6. <thead>  
  7.      <tr>  
  8.           <td>cell 1-1</td>  
  9.           <td>cell 1-2</td>  
  10.           <td>cell 1-3</td>  
  11.           <td>cell 1-4</td>  
  12.      </tr>  
  13. </thead>  
  14. <tfoot>  
  15.      <tr>  
  16.           <td>cell 4-1</td>  
  17.           <td>cell 4-2</td>  
  18.           <td>cell 4-3</td>  
  19.           <td>cell 4-4</td>  
  20.      </tr>  
  21. </tfoot>  
  22. <tbody>  
  23.      <tr>  
  24.           <td>cell 2-1</td>  
  25.           <td>cell 2-2</td>  
  26.           <td>cell 2-3</td>  
  27.           <td>cell 2-4</td>  
  28.      </tr>  
  29.      <tr>  
  30.           <td>cell 3-1</td>  
  31.           <td>cell 3-2</td>  
  32.           <td>cell 3-3</td>  
  33.           <td>cell 3-4</td>  
  34.      </tr>  
  35. </tbody>  
  36. </table>  

在浏覽器中的顯示效果如下圖:
201678140942598.jpg (599×127)

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved