Hi, I am trying to get a tables with different background colors on the same page.
I have got to the stage where I can place “lets say” 4 tables on 1 pages & via the remote css sheet I can change the background colour via the <tb> tag.
But how do I make each table a different colour?
-----------------------------------------------------------------------------
td
{
background-color: green
}
-------------------------------------------------------------------------------
<table border="0" bordercolor="" width="100" >
<tr>
<s1><td> row 1, column 1 </s1></td>
</tr>
</table>
------------------------------------------------------------------------------
But not sure what I am doing wrong here.
-------------------------------------------------------------------------------
b1
{
background-color: red
}
<table border="0" bordercolor="" width="100" >
<tr>
<b1><td> row 1, column 1 </b1></td>
</tr>
</table>
----------------------------------------------------------------------------------------------------------
Thanks.
I have got to the stage where I can place “lets say” 4 tables on 1 pages & via the remote css sheet I can change the background colour via the <tb> tag.
But how do I make each table a different colour?
-----------------------------------------------------------------------------
td
{
background-color: green
}
-------------------------------------------------------------------------------
<table border="0" bordercolor="" width="100" >
<tr>
<s1><td> row 1, column 1 </s1></td>
</tr>
</table>
------------------------------------------------------------------------------
But not sure what I am doing wrong here.
-------------------------------------------------------------------------------
b1
{
background-color: red
}
<table border="0" bordercolor="" width="100" >
<tr>
<b1><td> row 1, column 1 </b1></td>
</tr>
</table>
----------------------------------------------------------------------------------------------------------
Thanks.
Comment