HTML/CSS/Table Attributes/frame

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

"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>