in reply to Beautifying CGI.pm forms/tables
Add on top of what b10m have already said, CGI.pm actually allows you to define style for a component on fly. This is one line I cut from one of my scripts:
$msg .= $cgi->table({-border => 1, bgcolor => $c1, style => "Color +: $c2;"}, $cgi->Tr($table_data));
Pay attention to that style => "Color: $c2;", is it not very handy?.
|
|---|