Table (HTML): Difference between revisions

Content deleted Content added
Simple Table: added sample display from WIki code and a note
Tarikash (talk | contribs)
Simple Table: highlighting ! mark/symbol, inside the codebox, and, few other minor appearance improvement & correction
Line 88:
{| border="0" width="100%"
| width="33%" |
A simple table is displayed (at right side), using HTML code''':'''
|
<table border="1">
Line 109:
&#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>
Line 121:
<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 />
Line 129:
</tt>
|}
 
Display from Wiki code:
 
Below Table is displayed by using Wiki-markup code''':'''
 
{| border="1"
Line 138 ⟶ 140:
| 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) in wiki table, you should use following HTML decimal or entity codes: '''&#124;''' (<tt>&amp;#124;</tt>), '''&#60;''' (<tt>&amp;#60;</tt> or <tt>&amp;lt;</tt>), '''&#33;''' (<tt>&amp;#33;</tt>), '''&#123;''' (<tt>&amp;#123;</tt>), '''&#125;''' (<tt>&amp;#125;</tt>). For more, see [[Windows Alt keycodes]].
 
==CAPTION==