解决方法
Is it possible to select multiple tags that have an ancestor of a certain class in CSS?
目前,不是没有复制选择器并指定所有这些,不幸的是:
table.exams caption,table.exams tbody,table.exams tfoot,table.exams thead,table.exams tr,table.exams th,table.exams td
直到选择3完成之后,他们提出了伪类符号才能做到这一点,直到最近才开始出现基本的实现.参见this answer有一点历史课.
在遥远的未来,如果:matches()使它选择器4和浏览器开始实现它,你可能会做这样的事情:
table.exams :matches(caption,td)
If not,is there a way to select all descendants of that class?
那么你可以使用一个代表any element的星号*.由于你的选择器中有th和td,所以你可能意味着所有的后代,而不是所有的table.exams的孩子,所以不要使用>,使用一个空格代替:
table.exams *
但真的,避免这样做.如果可以的话,尽可能地指定你想要选择什么样的后代.