in reply to cgi application & global style sheet
sub cgiapp_postrun { my ($self, $output_ref) = @_; my $q = $self->query; $$output_ref = $q->start_html( -style=> { -type => 'text/css', -src=>'/styles/print.css', -rel => 'stylesheet', -media => 'all' } ) . $$output_ref; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: cgi application & global style sheet
by arcnon (Monk) on Mar 02, 2006 at 19:48 UTC | |
by rhesa (Vicar) on Mar 02, 2006 at 20:42 UTC |