csscss-selectors

Is there a CSS selector for elements containing certain text?


I am looking for a CSS selector for the following <table>:

Name Identity Age
Peter male 34
Susanne female 12

Is there any selector to match all <td>s containing the specific content "male"?


Solution

  • If I read the specification correctly, no.

    You can match on an element, the name of an attribute in the element, and the value of a named attribute in an element. I don't see anything for matching content within an element, though.