Dato questo semplice HTML come esempio:
codice:
<table>
  <tr>
    <td>cella 1</td>
    <td>cella 2</td>
  </tr>
</table>
Perche' questo CSS funziona:
codice:
table tr {
  background-color: #0ff;
}
e questo no:
codice:
table>tr {
  background-color: #0ff;
}
:master: :master: :master: