Is there a CSS selector for elements containing certain text?

后端 未结 18 2377
别跟我提以往
别跟我提以往 2020-11-21 04:26

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

Peter    | male    | 34
Susanne  | female  | 12

Is there any selector to match all

18条回答
  •  -上瘾入骨i
    2020-11-21 04:59

    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.

提交回复
热议问题