HTML/CSS/Table Attributes/frame

Материал из Web эксперт
Версия от 11:16, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

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