I have such HTML:
<table>
  <tr>
    <td style="text-transform: uppercase;">
      Some text node.
      <span>Some text in span</span>    
    </td>
  </tr>
</table>How can I write style for TD element, that will not affect child SPAN element? In my case SPAN must stay in normal text transform.
Note that I can modify the style only for the TD.
 
     
     
    