DAcclark2003 has asked for the wisdom of the Perl Monks concerning the following question:

lets say I have the following code $cgi = new CGI; print $cgi->start_font( -?=>'15' ); what would ? be
  • Comment on How do I modify font size if I'm refrencing a clone of CGI?

Replies are listed 'Best First'.
Re: How do I modify font size if I'm refrencing a clone of CGI?
by gav^ (Curate) on Jan 16, 2002 at 09:21 UTC
    What about?
    use CGI; my $q = new CGI; print $q->p($q->font({-size => '+1'}, 'blah'));
    Gives:

    <p><font size="+1">blah</font></p>