Have a quick question for the Netscape-CSS experts...
I have a table with a bunch of cells, please let me know if I can place the style sheet as a row tag attribute and have it control the display with the cells. For example will Option 1 work or will I have to use Option 2? I know Netscape(especially in different versions) does not recognize style sheets if they are table tag attributes.
Your advice would be welcome!!
OPTION 1
<tr class="Style1">
<td>Text</td>
<td>Text</td>
</tr>
<tr class="Style2">
<td>Text</td>
<td>Text</td>
</tr>
OPTION 2
<tr>
<td><Span class="Style1">Text</span></td>
<td><Span class="Style1">Text</span></td>
</tr>
<tr>
<td><Span class="Style2">Text</span></td>
<td><Span class="Style2">Text</span></td>
</tr>
I have a table with a bunch of cells, please let me know if I can place the style sheet as a row tag attribute and have it control the display with the cells. For example will Option 1 work or will I have to use Option 2? I know Netscape(especially in different versions) does not recognize style sheets if they are table tag attributes.
Your advice would be welcome!!
OPTION 1
<tr class="Style1">
<td>Text</td>
<td>Text</td>
</tr>
<tr class="Style2">
<td>Text</td>
<td>Text</td>
</tr>
OPTION 2
<tr>
<td><Span class="Style1">Text</span></td>
<td><Span class="Style1">Text</span></td>
</tr>
<tr>
<td><Span class="Style2">Text</span></td>
<td><Span class="Style2">Text</span></td>
</tr>