:host

:host CSS 伪类 选择包含其使用的 CSS 的 Shadow DOM 的阴影宿主——换句话说,这允许您从其 Shadow DOM 内部选择自定义元素。

注意:在 Shadow DOM 外部使用时,此操作无效。

试一试

css
/* Selects a shadow root host */
:host {
  font-weight: bold;
}

语法

css
:host {
  /* ... */
}

示例

设置阴影宿主的样式

以下代码段取自我们的 host-selectors 示例也可以查看其在线演示)。

在此示例中,我们有一个简单的自定义元素——<context-span>——您可以将其包裹在文本周围

html
<h1>
  Host selectors <a href="#"><context-span>example</context-span></a>
</h1>

在元素的构造函数内部,我们创建 stylespan 元素,使用自定义元素的内容填充 span,并使用一些 CSS 规则填充 style 元素

js
const style = document.createElement("style");
const span = document.createElement("span");
span.textContent = this.textContent;

const shadowRoot = this.attachShadow({ mode: "open" });
shadowRoot.appendChild(style);
shadowRoot.appendChild(span);

style.textContent =
  "span:hover { text-decoration: underline; }" +
  ":host-context(h1) { font-style: italic; }" +
  ':host-context(h1):after { content: " - no links in headers!" }' +
  ":host-context(article, aside) { color: gray; }" +
  ":host(.footer) { color : red; }" +
  ":host { background: rgb(0 0 0 / 10%); padding: 2px 5px; }";

:host { background: rgb(0 0 0 / 10%); padding: 2px 5px; } 规则设置文档中所有 <context-span> 元素(在本例中为阴影宿主)的样式。

规范

规范
CSS 范围模块级别 1
# host-selector

浏览器兼容性

BCD 表仅在启用 JavaScript 的浏览器中加载。

另请参阅