I am looking for a CSS selector for the following table:
Peter | male | 34 Susanne | female | 12
Is there any selector to match all
I find the attribute option to be your best bet if you don't want to use javascript or jquery.
E.g to style all table cells with the word ready, In HTML do this:
Ready
Then in css:
td[status*="ready"] { color: red; }