in reply to changing font size in tables using CGI?
You missed td() call:
You can also print some style information like this:print table( {-width=>"100%", -border=>"0", -bordercolor=>"#d9dae6", -cellspacing=>"2", -cellpadding=>"2"}, Tr({-bgcolor=>"#97a5f0"}, td({-class => 'sizetwo'}, \@rows) ) );
print <<EOT; <style type="text/css"> .sizetwo {font-size: large} </style> EOT
--dda
|
---|