Search code examples
htmlcssstylesheet

How can I format all td elements contained in a table with class myclass in CSS?


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>.


Solution

  • With a descendant combinator (represented by a space character):

    table.myclass td { — }