Структура моей таблицы выглядит следующим образом:
<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>
Я определил следующий CSS, как можно применять классы "навигация", "заголовок", "четный", "нечетный" в моем CSS?
Как определить их отношение к классу «таблица», как «table.even», «table.odd»?
спасибо
table{
font-family: "Lucida Sans Unicode", "Lucida Grande", Sans-Serif;
font-size: 10px;
#margin: 45px;
width:100%;
text-align: left;
border-collapse: collapse;
}