Forum Moderators: not2easy
Can anyone help me understand why?
Thanks!
.wontWorkForInnerTable
{
BACKGROUND: #bfcff1
}
.willWorkForInnerTable
{
FONT-WEIGHT: bolder;
FONT-SIZE: 14px;
FONT-FAMILY: Arial, Helvetica "sans-serif";
LETTER-SPACING: -0.03em
}
here's the code I used
CSS:
table.outer{
background-color: #009;
padding: 2px;
}
table.inner{
background-color: #ddd;
}
HTML:
<table class="outer" cellspacing="0">
<tr>
<td>first test cell</td>
<td>
<table class="inner" cellspacing-"0">
<tr>
<td>one cell inner table</td>
</tr>
</table>
</td>
</tr>
</table>
--------------------------------
the only thing I can think of is to check all your tags are closed, and that you have background-color, unstead of just background
Suzy
Ross