Help for this page

Select Code to Download


  1. or download this
    print $q->table({-border=>'1', -cellpadding=>'2', -cellspacing=>'2'},
      Tr({-align=>'LEFT', -valign=>'CENTER'}, [
    ...
            $q->td({-colspan=>'2'}, ['three', 'III']),
            $q->td({-colspan=>'3'}, ['four']),
    ]));
    
  2. or download this
    <TABLE>
    <TR>
    ...
    <TD COLSPAN="3">four</TD>
    </TR>
    </TABLE>
    
  3. or download this
    <TR>
    <TD>two</TD>
    <TD COLSPAN=2>2</TD>
    </TR>