My table structure is as follows:
<table>
<thead>
<tr class="navigation">
</tr>
</thead>
<thead>
<tr class="headers">
</tr>
</thead>
<tbody>
<tr class="even">
<td><a href="#"/></td>
</tr>
<tr class="odd">
</tr>
</tr>
</tbody>
</table>
I have defined the following CSS, how to apply the classes "navigation", "header", "even", "odd" in my CSS? How to define them, belong to the class "table", for example, "table.even", "table.odd"? thanks
table{
font-family: "Lucida Sans Unicode", "Lucida Grande", Sans-Serif;
font-size: 10px;
width:100%;
text-align: left;
border-collapse: collapse;
}
source
share