Say i have a <table> with a css class defined (<table class="x">) and i want to change the 'color' property of just the first level of <td>, is this possible using css without setting classes on the relevant <td>?
I.e.
<table class="x"><tr><td>
xxxx
<table><tr><td>yyy</td><tr></table>
</td></tr><table>
I only want the xxxx to change color - so .x td{color:red;} will currently apply to xxxx and yyyy when i only want xxxx targeted, but would rather not give the xxxx td a class name