R
Rahul
Is there a way to specify a style that applies to all tables on a page?
Currently my tables are styled using
<link rel="stylesheet" href="table_style.css" type="text/css"
media="screen" />
<TABLE id="box-table-a" >
blah blah blah
</TABLE>
But now I am generating the <TABLE> </TABLE> block automatically via the
mysql command-line-interface (and a cron job) so I want to avoid having to
insert the id="box-table-a" directive.
Is there some way I can specify this above the actual auto-generated html
code for the <TABLE> blocks?
The table_style.css contains some other styles as well but I wanted just
the "box-table-a".
Currently my tables are styled using
<link rel="stylesheet" href="table_style.css" type="text/css"
media="screen" />
<TABLE id="box-table-a" >
blah blah blah
</TABLE>
But now I am generating the <TABLE> </TABLE> block automatically via the
mysql command-line-interface (and a cron job) so I want to avoid having to
insert the id="box-table-a" directive.
Is there some way I can specify this above the actual auto-generated html
code for the <TABLE> blocks?
The table_style.css contains some other styles as well but I wanted just
the "box-table-a".