newperlbie has asked for the wisdom of the Perl Monks concerning the following question:
How can I introduce minimize button on some rows? or make some rows collapsible?is there some parameter I can define under td { } Thanks!<!DOCTYPE html> <html> <head> <style> table { font-family: arial, sans-serif; border-collapse: collapse; width: 100%; } td, th { border: 1px solid #aaaaaa; text-align: center; padding: 8px; font-size:14px; } th { font-size:18px; color: black; background-color: tan; } td { border: 1px solid #aaaaaa; text-align: center; padding: 8px; font-size:14px; color:black; background-color: yellow; } </style> </head> <body> <table> <tr> "; while (my $line = <$IN>) { $ret .= "<td>$f</td>\n"; $ret .= " </tr>\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: HTML:row collapse
by marto (Cardinal) on Aug 24, 2018 at 10:52 UTC | |
|
Re: [OT] HTML:row collapse
by hippo (Archbishop) on Aug 24, 2018 at 10:15 UTC |