If you want to assign the same style to a group of descendants, why isn't there an easy way to do this with CSS?
Say you have an HTML table as follows:
<table id='myTable'>
<tr>
<th></th>
<th></th>
<th></th>
</tr>
.
.
.
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</table>
Why do you have to style all column headings and cells with the following selector?
#myTable tr, #myTable td {}
Why isn't there a syntax similar to the following?
#myTable (tr,td) {}