sundance1980
MIS
Hello I have a css with the following:
table.main{
border: 1;
border-collapse: collapse;
color: #000000;
}
and the html as the following:
<table width="550" cellspacing="0" cellpadding="0" class="main">
<tr>
<td><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td test</td>
<td test</td>
</tr>
</table>
</td>
</tr>
</table>
Why does the inner table have a border around it even though I did not specify a class. How do I keep the tables seperate using different classes.
Thanks.
table.main{
border: 1;
border-collapse: collapse;
color: #000000;
}
and the html as the following:
<table width="550" cellspacing="0" cellpadding="0" class="main">
<tr>
<td><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td test</td>
<td test</td>
</tr>
</table>
</td>
</tr>
</table>
Why does the inner table have a border around it even though I did not specify a class. How do I keep the tables seperate using different classes.
Thanks.