HTML/CSS/Table Attributes/frame — различия между версиями

Материал из Web эксперт
Перейти к: навигация, поиск
м (1 версия)
 
м (1 версия)
 
(нет различий)

Текущая версия на 11:16, 26 мая 2010

"frame" determines how to display a table"s border frame

   <source lang="html4strict">
   

<HTML> <BODY>

<thead> </thead> <tfoot> </tfoot>
Header Header Header Header Header Header
Cell Cell Cell Cell Cell Cell
Cell Cell Cell Cell Cell Cell
Cell Cell Cell Cell Cell Cell
Cell Cell Cell Cell Cell Cell
Footer Footer Footer Footer Footer Footer
    
<button onclick="myTable.frame="void"">VOID</button> <button onclick="myTable.frame="above"">ABOVE</button> <button onclick="myTable.frame="below"">BELOW</button> <button onclick="myTable.frame="border"">BORDER</button> <button onclick="myTable.frame="hsides"">HSIDES</button> <button onclick="myTable.frame="lhs"">LHS</button> <button onclick="myTable.frame="rhs"">RHS</button> <button onclick="myTable.frame="vsides"">VSIDES</button> <button onclick="myTable.frame="box"">BOX</button>

</BODY> </HTML>


     </source>