How To Use Tables: Difference between revisions
No edit summary |
No edit summary |
||
Line 19: | Line 19: | ||
== Frames == | == Frames == | ||
This example demonstrates how to use the "frame" attribute to control the borders around a table. | This example demonstrates how to use the "frame" attribute to control the borders around a table. The thickness of the lines can be specified using "border" and the width in pixels. The frame feature is only supported in modern browsers. The first nine examples change only the frame parameter, the last three also change the border: | ||
<pre style="width:160px; align=center"> | <pre style="width:160px; align=center"> | ||
Line 112: | Line 112: | ||
|frame="void"<br><br> | |frame="void"<br><br> | ||
{|frame="void" | {|frame="void" | ||
!A | |||
!B | |||
|- | |||
|100 | |||
|200 | |||
|} | |||
|-align=center | |||
|frame="border" border="3"<br><br> | |||
{|frame="border" border="3" | |||
!A | |||
!B | |||
|- | |||
|100 | |||
|200 | |||
|} | |||
|frame="hsides" border="2"<br><br> | |||
{|frame="hsides" border="2" | |||
!A | |||
!B | |||
|- | |||
|100 | |||
|200 | |||
|} | |||
|frame="vsides" border="3"<br><br> | |||
{|frame="vsides" border="3" | |||
!A | !A | ||
!B | !B |
Revision as of 00:22, 31 March 2010
http://en.wikipedia.org/wiki/Help:Table
small | big |
small | big |
small | big |
small | big |
Frames
This example demonstrates how to use the "frame" attribute to control the borders around a table. The thickness of the lines can be specified using "border" and the width in pixels. The frame feature is only supported in modern browsers. The first nine examples change only the frame parameter, the last three also change the border:
{|frame="??" !A !B |- |100 |200 |}
frame="border"
|
frame="above"
|
frame="below"
| ||||||||||||
frame="hsides"
|
frame="vsides"
|
frame="lhs"
| ||||||||||||
frame="rhs"
|
frame="box"
|
frame="void"
| ||||||||||||
frame="border" border="3"
|
frame="hsides" border="2"
|
frame="vsides" border="3"
|