Monty wrote on 11 dec 2003 in comp.infosystems.
www.authoring.stylesheets:
[color=blue]
> .rowbackgrnd {
> background-color: #E4E4F2;
> border-bottom: 1px solid Black;
> border-left: 1px solid #E4E4F2;
> border-right: 1px solid #E4E4F2;
> border-top: 1px solid Black
> }
>
> It works for <td> tags but not <tr> tags. I've tried a number of
> alternatives but I canlt seem to figure out what I'm doing wrong.
>
> Thanks in advance for any guidance.
>[/color]
try this:
===========================
<style>
..trtdbackgrnd, .rowbackgrnd td {
background-color: #E4E4F2;
border-bottom: 1px solid Black;
border-left: 1px solid #E4E4F2;
border-right: 1px solid #E4E4F2;
border-top: 1px solid Black
}
</style>
<table>
<tr class="rowbackgrnd">
<td>----1---</td>
<td>----2---</td>
<td>----3---</td>
</tr>
</table>
<br>or:<br>
<table>
<tr>
<td class="trtdbackgrnd">
<table>
<tr>
<td>----1---</td>
<td>----2---</td>
<td>----3---</td>
</tr>
</table>
</td>
</tr>
</table>
=============================
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)