How can I format all td elements contained in a table with class myclass in CSS?
I want a format rule which applies to <table class="myclass"><td>FORMAT THIS</td></table>.
With a descendant combinator (represented by a space character):
table.myclass td { — }