Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re: strange output using -valign

by tangent (Parson)
on Jun 22, 2021 at 21:11 UTC ( [id://11134186]=note: print w/replies, xml ) Need Help??


in reply to strange output using -valign

Are you sure there isn't a mistake somewhere else - maybe post some more context. When I run your example it works fine. Using CGI version 4.44
use CGI; my $cgi = CGI->new; my $html = $cgi->TR( { -height => '100', -valign => 'bottom' }, [ $cgi->th(['Vegetable', 'Breakfast','Lunch','Dinner']), $cgi->td(['Tomatoes' , 'no', 'yes', 'yes']), ] ); print "$html";
OUTPUT:
<tr height="100" valign="bottom"> <th>Vegetable</th> <th>Breakfast</th> <th>Lunch</th> <th>Dinner</th> </tr> <tr height="100" valign="bottom"> <td>Tomatoes</td> <td>no</td> <td>yes</td> <td>yes</td> </tr>

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (3)
As of 2024-03-29 01:39 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found