Warning: Division by zero in /home/holt/public_html/pmwiki2/pmwiki.php on line 817

Warning: Division by zero in /home/holt/public_html/pmwiki2/pmwiki.php on line 817

Warning: Division by zero in /home/holt/public_html/pmwiki2/pmwiki.php on line 817

Warning: Division by zero in /home/holt/public_html/pmwiki2/pmwiki.php on line 817

Warning: Division by zero in /home/holt/public_html/pmwiki2/pmwiki.php on line 817

Warning: Division by zero in /home/holt/public_html/pmwiki2/pmwiki.php on line 817

Warning: Division by zero in /home/holt/public_html/pmwiki2/pmwiki.php on line 817

Warning: Division by zero in /home/holt/public_html/pmwiki2/pmwiki.php on line 817

Warning: Division by zero in /home/holt/public_html/pmwiki2/pmwiki.php on line 817

Warning: Division by zero in /home/holt/public_html/pmwiki2/pmwiki.php on line 817

Warning: Division by zero in /home/holt/public_html/pmwiki2/pmwiki.php on line 817

Warning: Division by zero in /home/holt/public_html/pmwiki2/pmwiki.php on line 817

Warning: Cannot modify header information - headers already sent by (output started at /home/holt/public_html/pmwiki2/pmwiki.php:817) in /home/holt/public_html/pmwiki2/pmwiki.php on line 663
PmWiki / SimpleTables2

Main.SideBar (edit)

PmWiki

pmwiki.org

Formatting tables

Table attributes: Any line that begins with || but doesn't have a closing || sets the table formatting attributes for any tables that follow. These attributes can control formatting such as border, width, alignment, bgcolor, cellpadding and cellspacing. Width may be specified in percent or in pixels. Colors may be specified either as named colors or #rrggbb codes (hint: always use lowercase letters for rgb values--i.e., #ff0000 and not #FF0000 for red). Cellpadding is the space between cell contents and the sides of the cell; cellspacing is the space between cells.

Example 1. Changing border and alignment.

This markup:

     
    || border=10 align=center
    || cell 1 || cell 2 || cell 3 ||
    || cell 1 || cell 2 || cell 3 ||

creates this table:

cell 1 cell 2 cell 3
cell 1 cell 2 cell 3

Example 2. Changing color.

This markup:

     
    || border=1 bgcolor=red align=center
    || cell 1 || cell 2 || cell 3 ||
    || cell 1 || cell 2 || cell 3 ||

creates this table:

cell 1 cell 2 cell 3
cell 1 cell 2 cell 3

Example 3. Changing width with percent.

This markup:

     
    || border=1 width=100% bgcolor=yellow
    || cell 1 || cell 2 || cell 3 ||
    || cell 1 || cell 2 || cell 3 ||

creates this table:

cell 1 cell 2 cell 3
cell 1 cell 2 cell 3

Example 4. Changing width with pixels and color with HTML.

This markup:

     
    || border=1 width=350 bgcolor=#cccccc align=center
    || cell 1 || cell 2 || cell 3 ||
    || cell 1 || cell 2 || cell 3 ||

creates this table:

cell 1 cell 2 cell 3
cell 1 cell 2 cell 3

Example 5. Changing cellpadding.

This markup:

     
    || border=1 width=350 cellpadding=10 align=center
    || cell 1 || cell 2 || cell 3 ||
    || cell 1 || cell 2 || cell 3 ||

creates this table:

cell 1 cell 2 cell 3
cell 1 cell 2 cell 3

Example 6. Changing cellspacing.

This markup:

     
    || border=1 width=350 cellspacing=10 align=center
    || cell 1 || cell 2 || cell 3 ||
    || cell 1 || cell 2 || cell 3 ||

creates this table:

cell 1 cell 2 cell 3
cell 1 cell 2 cell 3

<< Simple tables | PmWiki.DocumentationIndex | Advanced tables >>

Site Admin: Edit Page - Page History - Admin Help - SearchWiki
Page last modified on November 30, 2004, at 10:03 AM