Misplaced Pages

Table (HTML): Difference between revisions

Article snapshot taken from Wikipedia with creative commons attribution-sharealike license. Give it a read and then ask your questions in the chat. We can research this topic together.
Browse history interactively← Previous editContent deleted Content addedVisualWikitext
Revision as of 22:53, 19 November 2006 edit65.188.198.250 (talk) Simple Table← Previous edit Latest revision as of 00:07, 7 April 2014 edit undoSoledadKabocha (talk | contribs)Extended confirmed users14,258 editsm r to section 
(6 intermediate revisions by 4 users not shown)
Line 1: Line 1:
#REDIRECT ]
{{cleanup|October 2006}}
]


{{r to section}}


'''Table''' is a ] tag for creating boxes on web pages and to display data in those boxes.

;{{XMLElement|table|Table|…}}
<span style="color: green;">'''table { display: table }'''</span>
:Creates a table

;{{XMLElement|caption|Table Caption|…}}
<span style="color: green;">'''caption { display: table-caption }'''</span>
:Specifies a caption for the entire table.

;{{XMLElement|colgroup|Column Group|…}}
<span style="color: green;">'''colgroup { display: table-column-group }'''</span>
:Specifies a column group in a table.

:;{{XMLElement|col|Column Attributes||end=no}}
:<span style="color: green;">'''col { display: table-column }'''</span>
::Specifies attributes for an entire column in a table.

;{{XMLElement|thead|Table Head|…}}
<span style="color: green;">'''thead { display: table-header-group }'''</span>
:Specifies the header part of a table. This section may be repeated by the user agent if the table is split across pages (in printing or other paged media).

;{{XMLElement|tfoot|Table Foot|…}}
<span style="color: green;">'''tfoot { display: table-footer-group }'''</span>
:Specifies the footer part of a table. Like <code>&lt;thead></code>, this section may be repeated by the user agent if the table is split across pages (in printing or other paged media)

;{{XMLElement|tbody|Table Body|…}}
<span style="color: green;">'''tbody { display: table-row-group }'''</span>
:Specifies the main part of a table.

;{{XMLElement|tr|Table Row|…}}
<span style="color: green;">'''tr { display: table-row }'''</span>
:Creates a row in the table.

:;{{XMLElement|th|Table Header Cell|…}}
:<span style="color: green;">'''th { display: table-cell }'''</span>
::Creates a table header cell within a row; contents are conventionally displayed bold and centered. An aural user agent may use a louder voice for these items.

:;{{XMLElement|td|Table Data Cell|…}}
:<span style="color: green;">'''td { display: table-cell }'''</span>
::Creates a table data cell within a row.

{{Html series}}


==TABLE==

HTML table : <tt> &#60;table> ... &#60;/table> </tt> <br />
HTML table : <tt> &#60;table ''params''> ... &#60;/table> </tt>

CSS : <tt> TABLE { display: table } </tt>

''TABLE'' tag can have the following parameters ('''''params'''''): border, frame, rules, width, cellspacing, cellpadding, bgcolor, v-space, h-space, bordercolor, datapagesize, datasrc, clear, noflow, colspec, units, dp, background, summary, align, style, lang, dir, title, id, class.

CSS ( <tt> border-collapse: collapse | separate | inherit ; </tt> ). <br />
CSS ( <tt> empty-cells: show | hide | inherit ; </tt> ). <br />
CSS ( <tt> border-style: double | solid | dashed | dotted | </tt>
:<tt>ridge | outset | groove | inset | hidden | none ; </tt> ). <br />
CSS ( <tt> table-layout : auto | fixed | inherit ; </tt> ). <br />
HTML ( <tt> border = pixels </tt> ). <br />
CSS ( <tt> border-width: multi-length ; </tt> ) (pixels).
:(border-top-width, border-right-width, border-bottom-width, border-left-width). <br />
HTML ( <tt> width = multi-length ).
:(standard pixel, percentage, relative values, "0*"(zero asterisk)) </tt> ). <br />
HTML ( <tt> rules = none | groups | rows | cols | all </tt> ). <br />
HTML ( <tt> frame = void|above|below|hsides|lhs|rhs|vsides|box|border </tt> ). <br />
HTML ( <tt> align=left|center|right </tt> ) (Deprecated, Use CSS). <br />
HTML ( <tt> cellspacing = length </tt> ). <br />
CSS ( <tt> border-spacing: multi-length | horizontal_length vertical_length; </tt> ). <br />
HTML ( <tt> cellpadding = length </tt> ). <br />
CSS ( <tt> padding: multi-length; </tt> ). <br />
HTML ( <tt> dir </tt> ). <br />
CSS ( <tt> direction: ltr | rtl ; </tt> ). <br />
CSS ( <tt> unicode-bidi: normal | embed | bidi-override ; </tt> ). <br />
HTML ( <tt> bordercolor = "#rrggbb" | "colorname" </tt> ).
:(Aqua, Black, Blue, Fuchsia, Gray, Green, Lime, Maroon, Navy, Olive, Purple, Red, Silver, Teal, Yellow, White). For more, see ]. <br />
CSS ( <tt> border-color: "#rrggbb" | "colorname"; </tt> ).
:(border-top-color, border-right-color, border-bottom-color, border-left-color). <br />
CSS ( <tt> margin: multi-length; </tt> ). <br />
CSS ( <tt> visibility: visible | hidden | collapse | inherit ; </tt> ). <br />
CSS ( <tt> display: inline | block | list-item | run-in | inline-block | </tt>
:<tt>table | inline-table | table-row-group | table-header-group | table-footer-group | table-row | table-column-group | table-column | table-cell | table-caption | none | inherit | marker | compact | ruby | ruby-base | ruby-text | ruby-base-container | ruby-text-container ; </tt>).


===Simple Table===
{| border="0" width="100%"
| width="33%" |
A simple table is displayed (at right side), using HTML code''':'''
|
<table border="1">
<tr> <th> Header Cell: Column 1 </th><th> Header Cell: Column 2 </th> </tr>
<tr> <td> Data Cell: Row2 Column1 </td><td> Data Cell: Row2 Column2 </td> </tr>
<tr> <td> Data Cell: Row3 Column1 </td><td> Data Cell: Row3 Column2 </td> </tr>
</table>
|}

HTML code''':'''
{| border="0"
| style="border: 1px dashed #2f6fab; background-color: #f9f9f9;" |
<tt>
&#60;table border="1"> <br />
&#60;tr> <br />
&#60;th> Header Cell: Column 1 &#60;/th> &#60;th> Header Cell: Column 2 &#60;/th> <br />
&#60;/tr> <br />
&#60;tr> <br />
&#60;td> Data Cell: Row2 Column1 &#60;/td> &#60;td> Data Cell: Row2 Column2 &#60;/td> <br />
&#60;/tr> <br />
&#60;tr> <br />
&#60;td> Data Cell: Row3 Column1 &#60;/td> &#60;td> Data Cell: Row3 Column1 &#60;/td> <br />
&#60;/tr> <br />
&#60;/table>
</tt>
|}


Wiki code''':'''
{| border="0"
| style="border: 1px dashed #2f6fab; background-color: #f9f9f9;" |
<tt>
&#123;&#124; border="1" <br />
'''&#33;''' Header Cell: Column 1 '''&#33;&#33;''' Header Cell: Column 2 <br />
&#124;- <br />
&#124; Data Cell: Row2 Column1 &#124;&#124; Data Cell: Row2 Column1 <br />
&#124;- <br />
&#124; Data Cell: Row3 Column1 &#124;&#124; Data Cell: Row3 Column1 <br />
&#124;&#125;
</tt>
|}


Below Table is displayed by using Wiki-markup code''':'''

{| border="1"
! Header Cell: Column 1 !! Header Cell: Column 2
|-
| Data Cell: Row2 Column1 || Data Cell: Row2 Column1
|-
| Data Cell: Row3 Column1 || Data Cell: Row3 Column1
|}

:'''Note:''' "'''!'''" in header row causes bold display.
:'''Note:''' To display '''&#124;''' (pipe symbol), '''&#60;''' (less than sign), '''&#33;''' (exclamation mark), '''&#123;''' (beginning second/curly bracket) etc symbols, when used inside an wiki table, you should use following HTML decimal or entity codes: <tt>'''&amp;#124;'''</tt> for '''&#124;''' symbol, <tt>&amp;#60;</tt> or <tt>&amp;lt;</tt> for '''&#60;''' symbol, <tt>&amp;#33;</tt> for '''&#33;''' symbol, <tt>&amp;#123;</tt> for '''&#123;''' symbol, <tt>&amp;#125;</tt> for '''&#125;''' symbol. For more, see http://en.wikipedia.org/Windows_Alt_keycodes.

==CAPTION==
Table caption is a title of the table.

HTML : <tt> <nowiki> <caption> ... </caption> </nowiki> </tt> <br />
HTML : <tt> &#60;caption ''params''> ... &#60;/caption> </tt>

CSS : <tt> CAPTION { display: table-caption } </tt>

''CAPTION'' tag can have "''align''" (HTML)(Deprecated) parameter, and/or "''caption-side''" css/stylesheet property. Other parameters (''params'') it can have are class, id, title, lang, dir.

HTML : ( <tt> align = "top | bottom | left | right" </tt> ). <br />
CSS : ( <tt> caption-side: top | bottom | left | right | inherit ; </tt> ).

By default, caption uses ''align="top"''.

{| border="0" width="100%"
| colspan="3" width="50%" |
In the rightside table, the texts "'''Caption at bottom'''" are displaying a bottom side caption.
| colspan="3" |
<table border="1">
<caption align="bottom" style="caption-side: bottom"> <b> Caption at bottom </b> </caption>
<tr> <th> Data-Type-1 </th> <th> Data-Type-2 </th> </tr>
<tr> <td> Data-1a </td> <td> Data-2x </td> </tr>
<tr> <td> Data-1b </td> <td> Data-2y </td> </tr>
</table>
|}

HTML code''':'''
{| border="0"
| style="border: 1px dashed #2f6fab; background-color: #f9f9f9;" |
<tt>
&#60;table> <br />
&#60;'''caption''' align="bottom" style="caption-side: bottom"> &#60;b> Caption at bottom &#60;/b> &#60;/caption> <br />
&#60;tr> <br />
&#60;th> Data-Type-1 &#60;/th> &#60;th> Data-Type-2 &#60;/th> <br />
&#60;/tr> <br />
&#60;tr> <br />
&#60;td> Data-1a &#60;/td> &#60;td> Data-2x &#60;/td> <br />
&#60;/tr> <br />
&#60;tr> <br />
&#60;td> Data-1b &#60;/td> &#60;td> Data-2y &#60;/td> <br />
&#60;/tr> <br />
&#60;/table>
</tt>
|}
Note: ''caption'' is using both HTML and stylesheet parameter. HTML parameter (align) is included for compatibility with ] (~v6.0) or similar web browser software, which doesn't support the stylesheet property yet ''(June, 2006)''. Future browsers will probably recognize only the stylesheet property instead of the HTML parameter.

Wiki code''':'''
{| border="0"
| style="border: 1px dashed #2f6fab; background-color: #f9f9f9;" |
<tt>
&#123;&#124; border="1" <br />
'''&#124;+''' align="bottom" style="caption-side: bottom" &#124; &#39;&#39;&#39;Caption at bottom&#39;&#39;&#39; <br />
&#33; Data-Type-1 &#33;&#33; Data-Type-2 <br />
&#124;- <br />
&#124; Data-1a &#124;&#124; Data-2x <br />
&#124;- <br />
&#124; Data-1b &#124;&#124; Data-2y <br />
&#124;&#125;
</tt>
|}


==COLGROUP, COL==
Table column groups and columns : colgroup, col, colgroup col.

HTML : <tt> &#60;colgroup> ... &#60;/colgroup> </tt> <br />
CSS : <tt> COLGROUP { display: table-column-group } </tt> <br />
HTML : <tt> &#60;colgroup ''params''> ... &#60;/colgroup> </tt>

HTML : <tt> &#60;col> </tt> <br />
CSS : <tt> COL { display: table-column } </tt> <br />
HTML : <tt> &#60;col ''params''> </tt>

HTML : <tt> &#60;col /&#62; </tt> <br />
HTML : <tt> &#60;col ''params'' /> </tt>

HTML : <tt> &#60;colgroup> &#60;col /&#62; ... &#60;/colgroup> </tt> <br />
HTML : <tt> &#60;colgroup ''params''> &#60;col ''params'' /&#62; ... &#60;/colgroup> </tt>

''colgroup'' & ''col'' can have following parameters (''params''): span, width, align, char, charoff, valign, style, lang, dir, title, id, class.

HTML ( span = column_numbers ). <br />
HTML ( align = " left | center | right | justify | char " ). <br />

See TBODY for examples.


==THEAD==
See TBODY.


==TFOOT==
See TBODY.


==TBODY==
Table rowgroups : thead, tfoot, tbody.

HTML : <tt> &#60;thead> ... &#60;/thead> </tt>

HTML : <tt> &#60;tfoot> ... &#60;/tfoot> </tt>

HTML : <tt> &#60;tbody> ... &#60;/tbody> </tt>

CSS : <tt> THEAD { display: table-header-group } </tt>

CSS : <tt> TFOOT { display: table-footer-group } </tt>

CSS : <tt> TBODY { display: table-row-group } </tt>

These three tags can have following parameters (''params''): align, char, charoff, valign, style, lang, dir, title, id, class. "''tfoot''" tag must appear before ''tbody'' for browser soft to know where to render/place it.

HTML ( <tt> align = " left | center | right | justify | char " </tt> ). <br />
CSS ( <tt> text-align: left | right | center ; </tt> ). <br />
HTML ( <tt> valign = " top | middle | bottom | baseline " </tt> ). <br />
CSS ( <tt> vertical-align: top | middle | bottom | baseline ; </tt> ). <br />
HTML ( <tt> char = character </tt> ). <br />
HTML ( <tt> charoff = length </tt> ). <br />


=== Column and Row groups ===
When large numbers of items or objects are needed to be displayed on the web page (or pages) with various associated or related data next to the item or object, then grouping is necessary. Data grouping identifies, differentiates and displays each item and related data in an easy understandable way, by using different color, or, boxes with different border width, etc.


==== Column and Row groups for cross browsers ====
Below table uses the ''colgroup'', ''col'', ''thead'', ''tfoot'', ''tbody'', (''tr'', ''th'', ''td'') HTML tags with the following (HTML) parameters and (CSS) properties: ''border-collapse'', ''border'', ''border-top'', ''border-right'', ''border-bottom'', ''border-left'', ''cellspacing'', ''border-spacing'', ''cellpadding'', ''padding'', ''cols'', ''rules'', ''colspan'', ''rowspan'', etc.

{| border="0" width="100%"
| colspan="1" width="10%"| &nbsp;
| colspan="5" |
]
|}

To display the above table (]) with similar border width appearance in the ], ], etc web browsers, which uses different ], below codes needs to be implemented, which are using functionally redundant HTML tags and parameters (and/or CSS properties) to bring the table appearance almost same across different browsers. Parameter ''scope'' is not a must required for same appearance, it is useful mostly for the speech processor.

HTML code''':'''
{| border="0"
| style="border: 1px dashed #2f6fab; background-color: #f9f9f9;" |
<tt>
&#60;table border="3" cellspacing="0" cellpadding="2" cols="5" <br />
&nbsp;&nbsp;&nbsp;rules="all" style="text-align: center; font-size: 85%; border-spacing: 0px; <br />
&nbsp;&nbsp;&nbsp;border-collapse: collapse; padding: 2px; border: 3px solid;"> <br />
<br />
&nbsp;&#60;'''colgroup''' align="center" style="border: 3px solid; padding: 2px;"> <br />
&nbsp;&nbsp;&#60;col width="0*" style="border-left: 3px solid; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;border-right: 1px solid; padding: 2px;" &#47;&#62; <br />
&nbsp;&nbsp;&#60;col style="border-left: 1px solid; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;border-right: 3px solid; padding: 2px;" &#47;&#62; <br />
&nbsp;&#60;/colgroup> <br />
&nbsp;&#60;colgroup align="center" style="border: 3px solid; padding: 2px;"> <br />
&nbsp;&nbsp;&#60;col width="0*" style="border-left: 3px solid; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;border-right: 1px solid; padding: 2px;" &#47;&#62; <br />
&nbsp;&nbsp;&#60;col style="border-left: 1px solid; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;border-right: 3px solid; padding: 2px;" &#47;&#62; <br />
&nbsp;&#60;/colgroup> <br />
&nbsp;&#60;'''col''' align="center" width="0*" style="border: 3px solid; padding: 2px;" &#47;&#62; <br />
<br />
&nbsp;&#60;caption> &#60;b> Unicode (ISO 10646) Character List - "Number Forms" Block (Partial) &#60;/b> &#60;/caption> <br />
<br />
&nbsp;&#60;'''thead''' style="border: 3px solid;"> <br />
&nbsp;&#60;tr> <br />
&nbsp;&nbsp;&#60;th colspan="2" scope="colgroup" style="border: 3px solid;"> 2150 &#60;/th> <br />
&nbsp;&nbsp;&#60;th colspan="2" scope="colgroup" style="border: 3px solid;"> 2160 &#60;/th> <br />
&nbsp;&nbsp;&#60;th scope="col" style="border: 3px solid;"> &amp;nbsp; &#60;/th> <br />
&nbsp;&#60;/tr> <br />
&nbsp;&#60;/thead> <br />
<br />
&nbsp;&#60;thead style="border: 3px solid;"> <br />
&nbsp;&#60;tr> <br />
&nbsp;&nbsp;&#60;th scope="col"> &#60;small> Symbol &#60;/small> &#60;/th> <br />
&nbsp;&nbsp;&#60;th rowspan="2" scope="col" style="border-right: 3px solid;"> Name &#60;/th> <br />
&nbsp;&nbsp;&#60;th scope="col"> &#60;small> Symbol &#60;/small> &#60;/th> <br />
&nbsp;&nbsp;&#60;th rowspan="2" scope="col" style="border-right: 3px solid;"> Name &#60;/th> <br />
&nbsp;&nbsp;&#60;th rowspan="3" scope="col" style="border: 3px solid;"> <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#60;small>&#60;small> Last Hex# &#60;/small>&#60;/small> &#60;/th> <br />
&nbsp;&#60;/tr> <br />
&nbsp;&#60;tr> &#60;th> Hex &#60;/th> &#60;th> Hex &#60;/th> &#60;/tr> <br />
&nbsp;&#60;tr> <br />
&nbsp;&nbsp;&#60;th colspan="2" style="border-bottom: 3px solid; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;border-right: 3px solid;"> <br />
&nbsp;&nbsp;&nbsp;&nbsp;&#60;small> Symbol's Picture &#60;/small> &#60;/th> <br />
&nbsp;&nbsp;&#60;th colspan="2" style="border-bottom: 3px solid; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;border-right: 3px solid;"> <br />
&nbsp;&nbsp;&nbsp;&nbsp;&#60;small> Symbol's Picture &#60;/small> &#60;/th> <br />
&nbsp;&#60;/tr> <br />
&nbsp;&#60;/thead> <br />
<br />
&nbsp;&#60;'''tfoot''' style="border: 3px solid;"> <br />
&nbsp;&#60;tr> <br />
&nbsp;&nbsp;&#60;th> &#60;small> Symbol &#60;/small> &#60;/th> <br />
&nbsp;&nbsp;&#60;th rowspan="2" style="border-right: 3px solid;"> Name &#60;/th> <br />
&nbsp;&nbsp;&#60;th> &#60;small> Symbol &#60;/small> &#60;/th> <br />
&nbsp;&nbsp;&#60;th rowspan="2" style="border-right: 3px solid;"> Name &#60;/th> <br />
&nbsp;&nbsp;&#60;th rowspan="3" style="border: 3px solid;"> <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#60;small>&#60;small> Last Hex# &#60;/small>&#60;/small> &#60;/th> <br />
&nbsp;&#60;/tr> <br />
&nbsp;&#60;tr> &#60;th> Hex &#60;/th> &#60;th> Hex &#60;/th> &#60;/tr> <br />
&nbsp;&#60;tr> <br />
&nbsp;&nbsp;&#60;th colspan="2" style="border-bottom: 3px solid; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;border-right: 3px solid;"> <br />
&nbsp;&nbsp;&nbsp;&nbsp;&#60;small> Symbol's Picture &#60;/small> &#60;/th> <br />
&nbsp;&nbsp;&#60;th colspan="2" style="border-bottom: 3px solid; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;border-right: 3px solid;"> <br />
&nbsp;&nbsp;&nbsp;&nbsp;&#60;small> Symbol's Picture &#60;/small> &#60;/th> <br />
&nbsp;&#60;/tr> <br />
&nbsp;&#60;tr> <br />
&nbsp;&nbsp;&#60;th colspan="2" style="border: 3px solid;"> 2150 &#60;/th> <br />
&nbsp;&nbsp;&#60;th colspan="2" style="border: 3px solid;"> 2160 &#60;/th> <br />
&nbsp;&nbsp;&#60;th style="border: 3px solid;"&amp;nbsp; &#60;/th> <br />
&nbsp;&#60;/tr> <br />
&nbsp;&#60;/tfoot> <br />
<br />
&nbsp;&#60;'''tbody''' style="border: 3px solid; border-width: 3px;"> <br />
&nbsp;&#60;tr> <br />
&nbsp;&nbsp;&#60;td scope="row" style="font-size:200%;"> &amp;#x215E; &#60;/td> <br />
&nbsp;&nbsp;&#60;td rowspan="2" style="border-right: 3px solid;"> <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Vulger Fraction Seven Eighths &#60;/td> <br />
&nbsp;&nbsp;&#60;td style="font-size:200%;"> &amp;#x216E; &#60;/td> <br />
&nbsp;&nbsp;&#60;td rowspan="2" style="border-right: 3px solid;"> <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Roman Numeral Five Hundred &#60;/td> <br />
&nbsp;&nbsp;&#60;td rowspan="3" style="border: 3px solid;"> &#60;b> E &#60;/b> &#60;/td> <br />
&nbsp;&#60;/tr> <br />
&nbsp;&#60;tr> &#60;td> 0x215E &#60;/td> &#60;td> 0x216E &#60;/td> &#60;/tr> <br />
&nbsp;&#60;tr> <br />
&nbsp;&nbsp;&#60;td colspan="2" style="border-bottom: 3px solid; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;border-right: 3px solid;"> <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#60;img src="U+215E.gif" &#47;&#62; &#60;/td> <br />
&nbsp;&nbsp;&#60;td colspan="2" style="border-bottom: 3px solid; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;border-right: 3px solid;"> <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#60;img src="U+216E.gif" &#47;&#62; &#60;/td> <br />
&nbsp;&#60;/tr> <br />
&nbsp;&#60;/tbody> <br />
<br />
&nbsp;&#60;tbody style="border: 3px solid;"> <br />
&nbsp;&#60;tr> <br />
&nbsp;&nbsp;&#60;td scope="row" style="font-size:200%;"> &amp;#x215F; &#60;/td> <br />
&nbsp;&nbsp;&#60;td rowspan="2" style="border-right: 3px solid;"> <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Fraction Numerator One &#60;/td> <br />
&nbsp;&nbsp;&#60;td style="font-size:200%;"> &amp;#x216F; &#60;/td> <br />
&nbsp;&nbsp;&#60;td rowspan="2" style="border-right: 3px solid;"> <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Roman Numeral One Thousand &#60;/td> <br />
&nbsp;&nbsp;&#60;td rowspan="3" style="border: 3px solid;"> &#60;b> F &#60;/b> &#60;/td> <br />
&nbsp;&#60;/tr> <br />
&nbsp;&#60;tr> &#60;td> 0x215F &#60;/td> &#60;td> 0x216F &#60;/td> &#60;/tr> <br />
&nbsp;&#60;tr> <br />
&nbsp;&nbsp;&#60;td colspan="2" style="border-bottom: 3px solid; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;border-right: 3px solid;"> <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#60;img src="U+215F.gif" &#47;&#62; &#60;/td> <br />
&nbsp;&nbsp;&#60;td colspan="2" style="border-bottom: 3px solid; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;border-right: 3px solid;"> <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#60;img src="U+216F.gif" &#47;&#62; &#60;/td> <br />
&nbsp;&#60;/tr> <br />
&nbsp;&#60;/tbody> <br />
<br />
&#60;/table>
</tt>
|}


==== Column and Row groups with CSS border width supported browsers ====
Below table's appearance was rendered by the ] (/] /]) type of web-browser (/engine), and it contains shortest (less amount of) codes, for the same appearance, because, cells' properties are not individually defined, but instead they inherit those from the column and row groups. It uses the ''colgroup'', ''col'', ''thead'', ''tfoot'', ''tbody'', (''tr'', ''th'', ''td''), etc HTML tags with the following (HTML) parameters and (CSS) properties: ''border-collapse'', ''border'', ''border-right'', ''border-left'', ''padding'', ''colspan'', ''rowspan'', etc. Mozilla web-browsers renders properly the ''colgroup'', ''col'', ''thead'', ''tfoot'', ''tbody'' tags with CSS properties ''border width'', ''border style'', ''border color'', but ] (/MSHTML /] v6.0) engines (/web-browsers) fails to do that ''(June 2006)''. On the other hand, Trident engine browsers renders text color specified in both column and row groups (for both text and border), but Gecko engine browsers fails to do that for column groups ''(June 2006)''. These browsers renders the ''width'' and ''align'' parameters properly, when specified in the column and row groups tags.

{| border="0" width="100%"
| colspan="1" width="10%"| &nbsp;
| colspan="5" |
]
|}

To display the above table with similar border width appearance in the ] web browsers, below codes are required.

HTML code''':'''
{| border="0"
| style="border: 1px dashed #2f6fab; background-color: #f9f9f9;" |
<tt>
&#60;table border="3" cellspacing="0" cellpadding="2" <br />
&nbsp;&nbsp;&nbsp;&nbsp;rules="all" style="text-align: center; font-size: 85%; <br />
&nbsp;&nbsp;&nbsp;&nbsp;border-collapse: collapse; padding: 2px; border: 3px solid;"> <br />
<br />
&nbsp;&#60;colgroup align="center" style="border: 3px solid; padding: 2px;"> <br />
&nbsp;&nbsp;&#60;col &#47;> &#60;col &#47;> <br />
&nbsp;&#60;/colgroup> <br />
&nbsp;&#60;colgroup align="center" style="border: 3px solid; padding: 2px;"> <br />
&nbsp;&nbsp;&#60;col &#47;> &#60;col &#47;> <br />
&nbsp;&#60;/colgroup> <br />
&nbsp;&#60;col align="center" style="border: 3px solid; padding: 2px;" &#47;> <br />
<br />
&nbsp;&#60;caption> &#60;b> Unicode (ISO 10646) Number Forms Character List (Partial 02) &#60;/b> &#60;/caption> <br />
<br />
&nbsp;&#60;thead style="border: 3px solid;"> <br />
&nbsp;&#60;tr> <br />
&nbsp;&nbsp;&#60;th colspan="2"> 2150 &#60;/th> &#60;th colspan="2"> 2160 &#60;/th> &#60;th> &amp;nbsp; &#60;/th> <br />
&nbsp;&#60;/tr> <br />
&nbsp;&#60;/thead> <br />
<br />
&nbsp;&#60;thead style="border: 3px solid;"> <br />
&nbsp;&#60;tr> <br />
&nbsp;&nbsp;&#60;th> &#60;small> Symbol &#60;/small> &#60;/th> &#60;th rowspan="2"> Name &#60;/th> <br />
&nbsp;&nbsp;&#60;th> &#60;small> Symbol &#60;/small> &#60;/th> &#60;th rowspan="2"> Name &#60;/th> <br />
&nbsp;&nbsp;&#60;th rowspan="3"> &#60;small>&#60;small> Last Hex# &#60;/small>&#60;/small> &#60;/th> <br />
&nbsp;&#60;/tr> <br />
&nbsp;&#60;tr> &#60;th> Hex &#60;/th> &#60;th> Hex &#60;/th> &#60;/tr> <br />
&nbsp;&#60;tr> <br />
&nbsp;&nbsp;&#60;th colspan="2"> &#60;small> Symbol's Picture &#60;/small> &#60;/th> <br />
&nbsp;&nbsp;&#60;th colspan="2"> &#60;small> Symbol's Picture &#60;/small> &#60;/th> <br />
&nbsp;&#60;/tr> <br />
&nbsp;&#60;/thead> <br />
<br />
&nbsp;&#60;tfoot style="border: 3px solid;"> <br />
&nbsp;&#60;tr> <br />
&nbsp;&nbsp;&#60;th> &#60;small> Symbol &#60;/small> &#60;/th> &#60;th rowspan="2"> Name &#60;/th> <br />
&nbsp;&nbsp;&#60;th> &#60;small> Symbol &#60;/small> &#60;/th> &#60;th rowspan="2"> Name &#60;/th> <br />
&nbsp;&nbsp;&#60;th rowspan="3"> &#60;small>&#60;small> Last Hex# &#60;/small>&#60;/small> &#60;/th> <br />
&nbsp;&#60;/tr> <br />
&nbsp;&#60;tr> &#60;th> Hex &#60;/th> &#60;th> Hex &#60;/th> &#60;/tr> <br />
&nbsp;&#60;tr> <br />
&nbsp;&nbsp;&#60;th colspan="2"> &#60;small> Symbol's Picture &#60;/small> &#60;/th> <br />
&nbsp;&nbsp;&#60;th colspan="2"> &#60;small> Symbol's Picture &#60;/small> &#60;/th> <br />
&nbsp;&#60;/tr> <br />
&nbsp;&#60;tr> <br />
&nbsp;&nbsp;&#60;th colspan="2"> 2150 &#60;/th> &#60;th colspan="2"> 2160 &#60;/th> &#60;th> &amp;nbsp; &#60;/th> <br />
&nbsp;&#60;/tr> <br />
&nbsp;&#60;/tfoot> <br />
<br />
&nbsp;&#60;tbody style="border: 3px solid; border-width: 3px;"> <br />
&nbsp;&#60;tr> <br />
&nbsp;&nbsp;&#60;td style="font-size:200%;"> &amp;#x215E; &#60;/td> <br />
&nbsp;&nbsp;&#60;td rowspan="2"> Vulger Fraction Seven Eighths &#60;/td> <br />
&nbsp;&nbsp;&#60;td style="font-size:200%;"> &amp;#x216E; &#60;/td> <br />
&nbsp;&nbsp;&#60;td rowspan="2"> Roman Numeral Five Hundred &#60;/td> <br />
&nbsp;&nbsp;&#60;td rowspan="3"> &#60;b> E &#60;/b> &#60;/td> <br />
&nbsp;&#60;/tr> <br />
&nbsp;&#60;tr> &#60;td> 0x215E &#60;/td> &#60;td> 0x216E &#60;/td> &#60;/tr> <br />
&nbsp;&#60;tr> <br />
&nbsp;&nbsp;&#60;td colspan="2"> &#60;img src="U+215E.gif" &#47;> &#60;/td> <br />
&nbsp;&nbsp;&#60;td colspan="2"> &#60;img src="U+216E.gif" &#47;> &#60;/td> <br />
&nbsp;&#60;/tr> <br />
&nbsp;&#60;/tbody> <br />
<br />
&nbsp;&#60;tbody style="border: 3px solid;"> <br />
&nbsp;&#60;tr> <br />
&nbsp;&nbsp;&#60;td style="font-size:200%;"> &amp;#x215F; &#60;/td> <br />
&nbsp;&nbsp;&#60;td rowspan="2"> Fraction Numerator One &#60;/td> <br />
&nbsp;&nbsp;&#60;td style="font-size:200%;"> &amp;#x216F; &#60;/td> <br />
&nbsp;&nbsp;&#60;td rowspan="2"> Roman Numeral One Thousand &#60;/td> <br />
&nbsp;&nbsp;&#60;td rowspan="3"> &#60;b> F &#60;/b> &#60;/td> <br />
&nbsp;&#60;/tr> <br />
&nbsp;&#60;tr> &#60;td> 0x215F &#60;/td> &#60;td> 0x216F &#60;/td> &#60;/tr> <br />
&nbsp;&#60;tr> <br />
&nbsp;&nbsp;&#60;td colspan="2"> &#60;img src="U+215F.gif" &#47;> &#60;/td> <br />
&nbsp;&nbsp;&#60;td colspan="2"> &#60;img src="U+216F.gif" &#47;> &#60;/td> <br />
&nbsp;&#60;/tr> <br />
&nbsp;&#60;/tbody> <br />
<br />
&#60;/table>
</tt>
|}

==== Column and Row groups with CSS border width non-supported browsers ====

] (v6.0) renders all internal borders with 1px width by default, for the above table code. It doesn't support border width CSS properties, inside the column or row groups tags. So all appropriate individual cell, individually needs to have the border width CSS properties and values, for widening the cell borders for data grouping, and by doing so, code becomes longer. Below codes will keep the table appearance same in Gecko, Trident, etc browsers. If the contents of ''tfoot'' is placed as last data (''tr'') lines, then ''thead'', ''tfoot'', ''tbody'' tags and ''rules'' parameter can be removed.

{| border="0" width="100%"
| colspan="1" width="10%"| &nbsp;
| colspan="5" |
]
|}

To display the above table with similar border width appearance in the ] (and other) web browsers, below codes can be used.

HTML code''':'''
{| border="0"
| style="border: 1px dashed #2f6fab; background-color: #f9f9f9;" |
<tt>
&#60;table border="3" cellspacing="0" cellpadding="2" rules="all" style="text-align: center; font-size: 85%; border-collapse: collapse; padding: 2px; border: 3px solid;"> <br />
<br />
&nbsp;&#60;caption> &#60;b> Unicode (ISO 10646) Number Forms Character List (Partial 03) &#60;/b> &#60;/caption> <br />
<br />
&nbsp;&#60;thead> <br />
&nbsp;&#60;tr> <br />
&nbsp;&nbsp;&#60;th colspan="2" style="border: 3px solid;"> 2150 &#60;/th> <br />
&nbsp;&nbsp;&#60;th colspan="2" style="border: 3px solid;"> 2160 &#60;/th> <br />
&nbsp;&nbsp;&#60;th style="border: 3px solid;"> &nbsp; &#60;/th> <br />
&nbsp;&#60;/tr> <br />
&nbsp;&#60;/thead> <br />
<br />
&nbsp;&#60;thead> <br />
&nbsp;&#60;tr> <br />
&nbsp;&nbsp;&#60;th> &#60;small> Symbol &#60;/small> &#60;/th> <br />
&nbsp;&nbsp;&#60;th rowspan="2" style="border-right: 3px solid;"> Name &#60;/th> <br />
&nbsp;&nbsp;&#60;th> &#60;small> Symbol &#60;/small> &#60;/th> <br />
&nbsp;&nbsp;&#60;th rowspan="2" style="border-right: 3px solid;"> Name &#60;/th> <br />
&nbsp;&nbsp;&#60;th rowspan="3" style="border: 3px solid;"> <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#60;small>&#60;small> Last Hex# &#60;/small>&#60;/small> &#60;/th> <br />
&nbsp;&#60;/tr> <br />
&nbsp;&#60;tr> &#60;th> Hex &#60;/th> &#60;th> Hex &#60;/th> &#60;/tr> <br />
&nbsp;&#60;tr> <br />
&nbsp;&nbsp;&#60;th colspan="2" style="border-bottom: 3px solid; border-right: 3px solid;"> <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#60;small> Symbol's Picture &#60;/small> &#60;/th> <br />
&nbsp;&nbsp;&#60;th colspan="2" style="border-bottom: 3px solid; border-right: 3px solid;"> <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#60;small> Symbol's Picture &#60;/small> &#60;/th> <br />
&nbsp;&#60;/tr> <br />
&nbsp;&#60;/thead> <br />
<br />
&nbsp;&#60;tfoot> <br />
&nbsp;&#60;tr> <br />
&nbsp;&nbsp;&#60;th> &#60;small> Symbol &#60;/small> &#60;/th> <br />
&nbsp;&nbsp;&#60;th rowspan="2" style="border-right: 3px solid;"> Name &#60;/th> <br />
&nbsp;&nbsp;&#60;th> &#60;small> Symbol &#60;/small> &#60;/th> <br />
&nbsp;&nbsp;&#60;th rowspan="2" style="border-right: 3px solid;"> Name &#60;/th> <br />
&nbsp;&nbsp;&#60;th rowspan="3" style="border: 3px solid;"> <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#60;small>&#60;small> Last Hex# &#60;/small>&#60;/small> &#60;/th> <br />
&nbsp;&#60;/tr> <br />
&nbsp;&#60;tr> &#60;th> Hex &#60;/th> &#60;th> Hex &#60;/th> &#60;/tr> <br />
&nbsp;&#60;tr> <br />
&nbsp;&nbsp;&#60;th colspan="2" style="border-bottom: 3px solid; border-right: 3px solid;"> <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#60;small> Symbol's Picture &#60;/small> &#60;/th> <br />
&nbsp;&nbsp;&#60;th colspan="2" style="border-bottom: 3px solid; border-right: 3px solid;"> <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#60;small> Symbol's Picture &#60;/small> &#60;/th> <br />
&nbsp;&#60;/tr> <br />
&nbsp;&#60;tr> <br />
&nbsp;&nbsp;&#60;th colspan="2" style="border: 3px solid;"> 2150 &#60;/th> <br />
&nbsp;&nbsp;&#60;th colspan="2" style="border: 3px solid;"> 2160 &#60;/th> <br />
&nbsp;&nbsp;&#60;th style="border: 3px solid;"> &nbsp; &#60;/th> <br />
&nbsp;&#60;/tr> <br />
&nbsp;&#60;/tfoot> <br />
<br />
&nbsp;&#60;tbody> <br />
&nbsp;&#60;tr> <br />
&nbsp;&nbsp;&#60;td style="font-size:200%;"> &amp;#x215E; &#60;/td> <br />
&nbsp;&nbsp;&#60;td rowspan="2" style="border-right: 3px solid;"> <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Vulger Fraction Seven Eighths &#60;/td> <br />
&nbsp;&nbsp;&#60;td style="font-size:200%;"> &amp;#x216E; &#60;/td> <br />
&nbsp;&nbsp;&#60;td rowspan="2" style="border-right: 3px solid;"> <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Roman Numeral Five Hundred &#60;/td> <br />
&nbsp;&nbsp;&#60;td rowspan="3" style="border: 3px solid;"> &#60;b> E &#60;/b> &#60;/td> <br />
&nbsp;&#60;/tr> <br />
&nbsp;&#60;tr> &#60;td> 0x215E &#60;/td> &#60;td> 0x216E &#60;/td> &#60;/tr> <br />
&nbsp;&#60;tr> <br />
&nbsp;&nbsp;&#60;td colspan="2" style="border-bottom: 3px solid; border-right: 3px solid;"> <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#60;img src="U+215E.gif" &#47;> &#60;/td> <br />
&nbsp;&nbsp;&#60;td colspan="2" style="border-bottom: 3px solid; border-right: 3px solid;"> <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#60;img src="U+216E.gif" &#47;> &#60;/td> <br />
&nbsp;&#60;/tr> <br />
&nbsp;&#60;/tbody> <br />
<br />
&nbsp;&#60;tbody> <br />
&nbsp;&#60;tr> <br />
&nbsp;&nbsp;&#60;td style="font-size:200%;"> &amp;#x215F; &#60;/td> <br />
&nbsp;&nbsp;&#60;td rowspan="2" style="border-right: 3px solid;"> <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Fraction Numerator One &#60;/td> <br />
&nbsp;&nbsp;&#60;td style="font-size:200%;"> &amp;#x216F; &#60;/td> <br />
&nbsp;&nbsp;&#60;td rowspan="2" style="border-right: 3px solid;"> <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Roman Numeral One Thousand &#60;/td> <br />
&nbsp;&nbsp;&#60;td rowspan="3" style="border: 3px solid;"> &#60;b> F &#60;/b> &#60;/td> <br />
&nbsp;&#60;/tr> <br />
&nbsp;&#60;tr> &#60;td> 0x215F &#60;/td> &#60;td> 0x216F &#60;/td> &#60;/tr> <br />
&nbsp;&#60;tr> <br />
&nbsp;&nbsp;&#60;td colspan="2" style="border-bottom: 3px solid; border-right: 3px solid;"> <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#60;img src="U+215F.gif" &#47;> &#60;/td> <br />
&nbsp;&nbsp;&#60;td colspan="2" style="border-bottom: 3px solid; border-right: 3px solid;"> <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#60;img src="U+216F.gif" &#47;> &#60;/td> <br />
&nbsp;&#60;/tr> <br />
&nbsp;&#60;/tbody> <br />
<br />
&#60;/table>
</tt>
|}


==== Column and Row groups in Wiki markup processor ====

Wiki table doesn't support ''colgroup'', ''col'', ''thead'', ''tfoot'', ''tbody'' tags yet ''(June, 2006)''. So all appropriate individual cell, individually needs to have the border width CSS properties and values, for widening the cell borders for data grouping, and by doing so, code becomes longer, for a table with more items. Below codes will keep the table appearance same in Gecko, Trident, etc browsers.

{| border="0" width="100%"
| colspan="1" width="10%"| &nbsp;
| colspan="5" |
{| border="3" cellspacing="0" cellpadding="2" style="text-align: center; font-size: 85%; border-collapse: collapse; padding: 2px; border: 3px solid;"
|+ ''' Unicode (ISO 10646) Number Forms Character List (Partial 03) '''
! colspan="2" style="border: 3px solid;" | 2150
! colspan="2" style="border: 3px solid;" | 2160
! style="border: 3px solid;" | &nbsp;
|-
! <small> Symbol </small>
! rowspan="2" style="border-right: 3px solid;" | Name
! <small> Symbol </small>
! rowspan="2" style="border-right: 3px solid;" | Name
! rowspan="3" style="border: 3px solid;" | <small><small> Last Hex# </small></small>
|-
! Hex !! Hex
|-
! colspan="2" style="border-bottom: 3px solid; border-right: 3px solid;" |
<small> Symbol's Picture </small>
! colspan="2" style="border-bottom: 3px solid; border-right: 3px solid;" |
<small> Symbol's Picture </small>
|-
| style="font-size:200%;" | &#x215E;
| rowspan="2" style="border-right: 3px solid;" |
Vulger Fraction Seven Eighths
| style="font-size:200%;" | &#x216E;
| rowspan="2" style="border-right: 3px solid;" |
Roman Numeral Five Hundred
| rowspan="3" style="border: 3px solid;" | ''' E '''
|-
| 0x215E || 0x216E
|-
| colspan="2" style="border-bottom: 3px solid; border-right: 3px solid;" |
]
| colspan="2" style="border-bottom: 3px solid; border-right: 3px solid;" |
]
|-
| style="font-size:200%;" | &#x215F;
| rowspan="2" style="border-right: 3px solid;" |
Fraction Numerator One
| style="font-size:200%;" | &#x216F;
| rowspan="2" style="border-right: 3px solid;" |
Roman Numeral One Thousand
| rowspan="3" style="border: 3px solid;" | ''' F '''
|-
| 0x215F || 0x216F
|-
| colspan="2" style="border-bottom: 3px solid; border-right: 3px solid;" |
]
| colspan="2" style="border-bottom: 3px solid; border-right: 3px solid;" |
]
|-
! <small> Symbol </small>
! rowspan="2" style="border-right: 3px solid;" | Name
! <small> Symbol </small>
! rowspan="2" style="border-right: 3px solid;" | Name
! rowspan="3" style="border: 3px solid;" | <small><small> Last Hex# </small></small>
|-
! Hex !! Hex
|-
! colspan="2" style="border-bottom: 3px solid; border-right: 3px solid;" |
<small> Symbol's Picture </small>
! colspan="2" style="border-bottom: 3px solid; border-right: 3px solid;" |
<small> Symbol's Picture </small>
|-
! colspan="2" style="border: 3px solid;" | 2150
! colspan="2" style="border: 3px solid;" | 2160
! style="border: 3px solid;" | &nbsp;
|}
|}

To display the above table with similar border width appearance in most HTML web browsers, below codes can be used.

Wiki code''':'''
{| border="0"
| style="border: 1px dashed #2f6fab; background-color: #f9f9f9;" |
<tt>
&#123;&#124; border="3" cellspacing="0" cellpadding="2" style="text-align: center; font-size: 85%; border-collapse: collapse; padding: 2px; border: 3px solid;" <br />
&#124;+ &#39;&#39;&#39; Unicode (ISO 10646) Number Forms Character List (Partial 03) &#39;&#39;&#39; <br />
&#33; colspan="2" style="border: 3px solid;" &#124; 2150 <br />
&#33; colspan="2" style="border: 3px solid;" &#124; 2160 <br />
&#33; style="border: 3px solid;" &#124; &amp;nbsp; <br />
&#124;- <br />
&#33; &#60;small> Symbol &#60;/small> <br />
&#33; rowspan="2" style="border-right: 3px solid;" &#124; Name <br />
&#33; &#60;small> Symbol &#60;/small> <br />
&#33; rowspan="2" style="border-right: 3px solid;" &#124; Name <br />
&#33; rowspan="3" style="border: 3px solid;" &#124; <br />
&#60;small>&#60;small> Last Hex# &#60;/small>&#60;/small> <br />
&#124;- <br />
&#33; Hex &#33;&#33; Hex <br />
&#124;- <br />
&#33; colspan="2" style="border-bottom: 3px solid; border-right: 3px solid;" &#124; <br />
&#60;small> Symbol's Picture &#60;/small> <br />
&#33; colspan="2" style="border-bottom: 3px solid; border-right: 3px solid;" &#124; <br />
&#60;small> Symbol's Picture &#60;/small> <br />
&#124;- <br />
&#124; style="font-size:200%;" &#124; &amp;#x215E; <br />
&#124; rowspan="2" style="border-right: 3px solid;" &#124; <br />
Vulger Fraction Seven Eighths <br />
&#124; style="font-size:200%;" &#124; &amp;#x216E; <br />
&#124; rowspan="2" style="border-right: 3px solid;" &#124; <br />
Roman Numeral Five Hundred <br />
&#124; rowspan="3" style="border: 3px solid;" &#124; &#39;&#39;&#39; E &#39;&#39;&#39; <br />
&#124;- <br />
&#124; 0x215E &#124;&#124; 0x216E <br />
&#124;- <br />
&#124; colspan="2" style="border-bottom: 3px solid; border-right: 3px solid;" &#124; <br />
&#91;&#91;Image:U+215E.gif&#93;&#93; <br />
&#124; colspan="2" style="border-bottom: 3px solid; border-right: 3px solid;" &#124; <br />
&#91;&#91;Image:U+216E.gif&#93;&#93; <br />
&#124;- <br />
&#124; style="font-size:200%;" &#124; &amp;#x215F; <br />
&#124; rowspan="2" style="border-right: 3px solid;" &#124; <br />
Fraction Numerator One <br />
&#124; style="font-size:200%;" &#124; &amp;#x216F; <br />
&#124; rowspan="2" style="border-right: 3px solid;" &#124; <br />
Roman Numeral One Thousand <br />
&#124; rowspan="3" style="border: 3px solid;" &#124; &#39;&#39;&#39; F &#39;&#39;&#39; <br />
&#124;- <br />
&#124; 0x215F &#124;&#124; 0x216F <br />
&#124;- <br />
&#124; colspan="2" style="border-bottom: 3px solid; border-right: 3px solid;" &#124; <br />
&#91;&#91;Image:U+215F.gif&#93;&#93; <br />
&#124; colspan="2" style="border-bottom: 3px solid; border-right: 3px solid;" &#124; <br />
&#91;&#91;Image:U+216F.gif&#93;&#93; <br />
&#124;- <br />
&#33; &#60;small> Symbol &#60;/small> <br />
&#33; rowspan="2" style="border-right: 3px solid;" &#124; Name <br />
&#33; &#60;small> Symbol &#60;/small> <br />
&#33; rowspan="2" style="border-right: 3px solid;" &#124; Name <br />
&#33; rowspan="3" style="border: 3px solid;" &#124; <br />
&#60;small>&#60;small> Last Hex# &#60;/small>&#60;/small> <br />
&#124;- <br />
&#33; Hex &#33;&#33; Hex <br />
&#124;- <br />
&#33; colspan="2" style="border-bottom: 3px solid; border-right: 3px solid;" &#124; <br />
&#60;small> Symbol's Picture &#60;/small> <br />
&#33; colspan="2" style="border-bottom: 3px solid; border-right: 3px solid;" &#124; <br />
&#60;small> Symbol's Picture &#60;/small> <br />
&#124;- <br />
&#33; colspan="2" style="border: 3px solid;" &#124; 2150 <br />
&#33; colspan="2" style="border: 3px solid;" &#124; 2160 <br />
&#33; style="border: 3px solid;" &#124; &amp;nbsp; <br />
&#124;&#125;
</tt>
|}


==TR==
Table row.

HTML : <tt> &#60;tr> ... &#60;/tr> </tt> <br />
CSS : <tt> TR { display: table-row } </tt>

This tag can have following parameters: bgcolor, align, char, charoff, valign, style, lang, dir, title, id, class.

HTML ( <tt> align = " left | center | right | justify | char " </tt> ). <br />
CSS ( <tt> text-align: left | center | right ; </tt> ). <br />


==TH==
Table Header Cell.

HTML : <tt> &#60;th> ... &#60;/th> </tt> <br/>
CSS : <tt> TH { display: table-cell } </tt>

This tag can have following parameters: scope, width, height, abbr, axis, rowspan, colspan, bgcolor, nowrap, style, lang, dir, title, id, class. See TD.



==TD==
Table Data Cell.

HTML : <tt> &#60;td> ... &#60;/td> </tt> <br/>
CSS : <tt> TD { display: table-cell } </tt>

This tag can have following parameters: headers, scope, width, height, abbr, axis, rowspan, colspan, bgcolor, nowrap, style, lang, dir, title, id, class.

HTML ( <tt> headers = id_refs </tt> ). <br />
HTML ( <tt> scope = row | col | rowgroup | colgroup </tt> ). <br />
HTML ( <tt> abbr = text </tt> ). <br />
HTML ( <tt> axis = category_data_name(s list) </tt> ). <br />
HTML ( <tt> rowspan = row_number(s) </tt> ). <br />
HTML ( <tt> colspan = column_number(s) </tt> ). <br />
HTML ( <tt> nowrap </tt> ) (Deprecated, Use CSS). <br />
CSS ( <tt> white-space: normal | pre | nowrap ; </tt> ). <br />
HTML ( <tt> width = length </tt> ) (Deprecated, Use CSS). <br />
HTML ( <tt> height = length </tt> ) (Deprecated, Use CSS). <br />
CSS ( <tt> height: length ; </tt> ). <br />


===Rowspan, Colspan===

Another simple HTML table is displayed below, applying the ''rowspan'' and ''colspan'' parameters''':'''

{| border="0" width="100%"
| colspan="1" width="10%"| &nbsp;
| colspan="5" |
<table border="5" cellspacing="5" cellpadding="2">
<tr> <th colspan="4"> Purchased Equipments (June, 2006) </th> </tr>
<tr>
<th rowspan="2"> Item Num# </th>
<th rowspan="2"> Item Picture </th>
<th> Item Description </th> <th> Price </th>
</tr>
<tr>
<th> Shipping Handling, Installation, etc </th> <th> Expense </th>
</tr>
<tr>
<td rowspan="2"> 1. </td>
<td rowspan="2"> ] </td>
<td> IBM Clone Computer. </td> <td> $ 400.00 </td>
</tr>
<tr>
<td> Shipping Handling, Installation, etc </td> <td> $ 20.00 </td>
</tr>
<tr>
<td rowspan="2"> 2. </td>
<td rowspan="2"> ] </td>
<td> 1GB RAM Module for Computer. </td> <td> $ 50.00 </td>
</tr>
<tr>
<td> Shipping Handling, Installation, etc </td> <td> $ 14.00 </td>
</tr>
<tr>
<th colspan="4"> Purchased Equipments (June, 2006) </th> </tr>
</table>
|}

HTML code''':'''
{| border="0"
| style="border: 1px dashed #2f6fab; background-color: #f9f9f9;" |
<tt>
&#60;table border="5" cellspacing="5" cellpadding="2"> <br />
&nbsp;&#60;tr> &#60;th '''colspan'''="4"> Purchased Equipments (June, 2006) &#60;/th> &#60;/tr> <br />
&nbsp;&#60;tr> <br />
&nbsp;&nbsp;&#60;th '''rowspan'''="2"> Item Num# &#60;/th> <br />
&nbsp;&nbsp;&#60;th rowspan="2"> Item Picture &#60;/th> <br />
&nbsp;&nbsp;&#60;th> Item Description &#60;/th> &#60;th> Price &#60;/th> <br />
&nbsp;&#60;/tr> <br />
&nbsp;&#60;tr> <br />
&nbsp;&nbsp;&#60;th> Shipping Handling, Installation, etc &#60;/th> &#60;th> Expense &#60;/th> <br />
&nbsp;&#60;/tr> <br />
&nbsp;&#60;tr> <br />
&nbsp;&nbsp;&#60;td rowspan="2"> 1. &#60;/td> <br />
&nbsp;&nbsp;&#60;td rowspan="2"> &#60;img src="Crystal_mycomputer.png" /&#62; &#60;/td> <br />
&nbsp;&nbsp;&#60;td> IBM Clone Computer. &#60;/td> &#60;td> $ 400.00 &#60;/td> <br />
&nbsp;&#60;/tr> <br />
&nbsp;&#60;tr> <br />
&nbsp;&nbsp;&#60;td> Shipping Handling, Installation, etc &#60;/td> &#60;td> $ 20.00 &#60;/td> <br />
&nbsp;&#60;/tr> <br />
&nbsp;&#60;tr> <br />
&nbsp;&nbsp;&#60;td rowspan="2"> 2. &#60;/td> <br />
&nbsp;&nbsp;&#60;td rowspan="2"> &#60;img src="Crystal_kcmmemory.png" /&#62; &#60;/td> <br />
&nbsp;&nbsp;&#60;td> 1GB RAM Module for Computer. &#60;/td> &#60;td> $ 50.00 &#60;/td> <br />
&nbsp;&#60;/tr> <br />
&nbsp;&#60;tr> <br />
&nbsp;&nbsp;&#60;td> Shipping Handling, Installation, etc &#60;/td> &#60;td> $ 14.00 &#60;/td> <br />
&nbsp;&#60;/tr> <br />
&nbsp;&#60;tr> <br />
&nbsp;&nbsp;&#60;th colspan="4"> Purchased Equipments (June, 2006) &#60;/th>
&nbsp;&#60;/tr> <br />
&#60;/table>
</tt>
|}

To obtain the above exact table with same appearance, we have to apply below wiki code, because, appearance of default wiki table is different from default HTML table. In below codes, you may need to replace the default border color code for ] ''#C0C0C0'' and the ''gray'' color, with ''#ECE9D8'' for ].

Wiki code''':'''
{| border="0"
| style="border: 1px dashed #2f6fab; background-color: #f9f9f9;" |
<tt>
&#123;&#124; border="5" cellspacing="5" cellpadding="2" style="border-color: #C0C0C0;" <br />
&#33; '''colspan'''="4" style="border: 1px groove gray;" &#124; Purchased Equipments (June, 2006) <br />
&#124;- <br />
&#33; '''rowspan'''="2" style="border: 1px groove gray;" &#124; Item Num# <br />
&#33; rowspan="2" style="border: 1px groove gray;" &#124; Item Picture <br />
&#33; style="border: 1px groove gray;" &#124; Item Description <br />
&#33; style="border: 1px groove gray;" &#124; Price <br />
&#124;- <br />
&#33; style="border: 1px groove gray;" &#124; Shipping Handling, Installation, etc <br />
&#33; style="border: 1px groove gray;" &#124; Expense <br />
&#124;- <br />
&#124; rowspan="2" style="border: 1px groove gray;" &#124; 1. <br />
&#124; rowspan="2" style="border: 1px groove gray;" &#124; &#91;&#91;Image:Crystal_mycomputer.png&#93;&#93; <br />
&#124; style="border: 1px groove gray;" &#124; IBM Clone Computer <br />
&#124; style="border: 1px groove gray;" &#124; $ 400.00 <br />
&#124;- <br />
&#124; style="border: 1px groove gray;" &#124; Shipping Handling, Installation, etc <br />
&#124; style="border: 1px groove gray;" &#124; $ 20.00 <br />
&#124;- <br />
&#124; rowspan="2" style="border: 1px groove gray;" &#124; 2. <br />
&#124; rowspan="2" style="border: 1px groove gray;" &#124; &#91;&#91;Image:Crystal_kcmmemory.png&#93;&#93; <br />
&#124; style="border: 1px groove gray;" &#124; 1GB RAM Module for Computer. <br />
&#124; style="border: 1px groove gray;" &#124; $ 50.00 <br />
&#124;- <br />
&#124; style="border: 1px groove gray;" &#124; Shipping Handling, Installation, etc <br />
&#124; style="border: 1px groove gray;" &#124; $ 14.00 <br />
&#124;- <br />
&#33; colspan="4" style="border: 1px groove gray;" &#124; Purchased Equipments (June, 2006) <br />
&#124;&#125;
</tt>
|}


==See also==
* ]
* ] (List of HTML decimal or hexadecimal code on characters)

==External links==
HTML Table Tutorials at:
*
*
*

]
]

Latest revision as of 00:07, 7 April 2014

Redirect to: