I have a form with a table inside a fieldset.
I want to control the background color of the embedded table, which is a 2 x 3.
I've tried all the fixes I could find on this site and none of them worked.
Specifically,
<style type="text/css">
.txt {color: darkred; background-color: lightgray;} - this works for a cell
.table1 {background-color: lightgray;} - this doesn't work for the table
</style>
<style type="text/css">
table{background-color: lightgray;} - this doesn't work for the table
</style>
I've tried these in a CSS file and as shown above, neither works.
HELP!
Thanks.