HTML table

From NovaOrdis Knowledge Base
Revision as of 16:52, 9 June 2016 by Ovidiu (talk | contribs)
Jump to navigation Jump to search

External

Internal

Overview

The <table> tag defines an HTML table.

An HTML table consists of the <table> element and one or more <th>, <tr> and <td> elements.

The <th> element defines a table header, the <tr> element defines a table row, and the <td> element defines a table cell.

Common Usage

<table>

    <table id="main_container" 
           width="100%" 
           border="0" 
           cellpadding="0" 
           cellspacing="0" 
           style="border-bottom:1px solid black">

       <tr><th align="left">First Name</th><th align="right">Age</th></tr>
       <tr><td>Alice</td><td>30</td></tr>
       <tr><td>Bob</td><td>31</td></tr>

    </table>

!!TD

right

!!!Styles

!!Table

{{{

}}} !!TR !!TD {{{

}}}

__Referenced by:__\\ [{INSERT com.ecyrd.jspwiki.plugin.ReferringPagesPlugin WHERE max=20, maxwidth=50}]