How can I format all td elements contained in a table with class myclass in CSS?
With a descendant combinator (represented by a space character):
table.myclass td { — }
table.myclass td { color: blue }
Your table is missing a tr
element by the way.
Don't this simple css will do it?
.myclass td{}