
Kanji
User
/ Moderator
Nov 17, 2001, 9:01 AM
Post #3 of 8
(975 views)
|
|
Re: <TD width=33%> using CGI.pm?
[In reply to]
|
Can't Post
|
|
As with many of CGI methods, if you provide a hash reference of customized elements as the first argument ( method(\%hash, \@data) ), they'll be incorporated into that methods output ...
push @rows, td( { -bgcolor => 'blue', -width => '33%' }, [splice @items, 0, 3] ) while @items;
|