Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: Perl CGI, font color in a table

by JavaFan (Canon)
on Feb 28, 2012 at 07:14 UTC ( [id://956599]=note: print w/replies, xml ) Need Help??


in reply to Perl CGI, font color in a table

Untested:
td ({-style=>"foreground:red"}, escapeHTML("This is a required field") +);
The HTML shortcuts take an optional first argument, a hashref with the elements attributes.

Or you could do:

td (span ({-class=>"required_field"}, escapeHTML("This is a required f +ield")));
And use a style sheet to colour spans of class required_field red. Or you could give the table cell a class (or id) attribute.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://956599]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (7)
As of 2024-03-28 12:59 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found