:has-slotted
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
Experimentell: Dies ist eine experimentelle Technologie
Überprüfen Sie die Browser-Kompatibilitätstabelle sorgfältig, bevor Sie diese produktiv verwenden.
Die :has-slotted
CSS Pseudo-Klasse trifft zu, wenn der Inhalt eines <slot>
-Elements nicht leer ist oder nicht den Standardwert verwendet (siehe Verwendung von Templates und Slots für weitere Informationen).
Hinweis: Selbst ein einzelnes Leerzeichen-Textknoten genügt, damit :has-slotted
angewendet wird.
Dies funktioniert nur, wenn es in CSS verwendet wird, das innerhalb eines Shadow DOM platziert ist.
/* Selects the content of a <slot> element that has content that is not default */
:has-slotted {
color: green;
}
/* Selects the content of a <slot> element that has no content or default */
:not(:has-slotted) {
color: red;
}
Syntax
:has-slotted {
/* ... */
}
Beispiele
Dieses Beispiel enthält zwei <slot>
-Elemente, von denen einem Inhalt zugewiesen wurde und dem anderen nicht.
HTML
<p>
<template shadowrootmode="open">
<style>
:has-slotted {
color: rebeccapurple;
}
</style>
<slot name="one">Placeholder 1</slot>
<slot name="two">Placeholder 2</slot>
</template>
<span slot="one">Slotted content</span>
</p>
Ergebnis
Das <slot>
-Element, dem Inhalt zugewiesen wurde, entspricht der :has-slotted
Pseudo-Klasse und hat den color
Wert rebeccapurple
angewendet.
Spezifikationen
Specification |
---|
CSS Scoping Module Level 1 # the-has-slotted-pseudo |
Browser-Kompatibilität
BCD tables only load in the browser
Siehe auch
- HTML
<template>
Element - HTML
<slot>
Element ::slotted