我想从自定义元素的内容中提取第一段(作为摘要)。我希望以下工作:
<polymer-element name="x-thing" noscript>
<template>
<segment class="summary">
<content select="p:first-child"></content>
</segment>
<segment>
<content></content>
</segment>
</template>
</polymer-element>
不幸的是,<content select="p:first-child">
似乎与任何内容都不匹配:(
答案 0 :(得分:5)
Shadow DOM规范中仅支持:not()
:http://w3c.github.io/webcomponents/spec/shadow/#dfn-matching-criteria