CSS - Pseudo-element - ::slotted()



The ::slotted() pseudo-element represents an element that has a slot attribute on it. Unlike ::part() pseudo-element, the ::slotted() pseudo-element remains encapsulated in the <style> element in the web component's <template>.

This pseudo-element is effective only when used inside CSS placed within a shadow DOM.

Syntax

selector::slotted(<compound-selector>) {
    /* ... */
}  

CSS ::slotted Example

Here is an example of ::slotted() pseudo-element. In this example:

  • A template is being used with three slots.

  • A custom element 'sample-card' is defined.

  • The CSS styling have been added in the <style> block within the <template>.

  • The slots are to be declared first, with either a class name or an id.

  • The declared slots are called later in the html code, using the class name or the id.

  • In case, the class name or id identifier, does not match with the one that is declared, the slot's description is rendered.

Try and change the class name or id or the styling and see the changed effect.

<html>
<head>
</head>
<body>
   <template id="sample-template">
      <style>
         ::slotted(.p-text) {
            background-color: lavender;
         }

         h2::slotted(.heading) {
            background: silver;
         }

         ::slotted(#footer-text) {
            background-color: lightsteelblue;
            border: 2px solid black;
         }
      </style>
      <div>
         <h2><slot name="heading">title goes here</slot></h2>
         <slot name="p-text">content goes here</slot>
         <slot name="footer-text">Footer here</slot>
      </div>
   </template>

   <sample-card>
      <span class="heading" slot="heading">::Slotted Example</span>
      <p class="p-text" slot="p-text">Paragraph text</p>
      <p id="footer-text" slot="footer-text">Footer text</p>
   </sample-card>

   <script>
      customElements.define(
         'sample-card',
         class extends HTMLElement {
         constructor() {
         super();

         const template = document.getElementById('sample-template');
         const shadow = this.attachShadow({ mode: 'open' });
         shadow.appendChild(template.content.cloneNode(true));

         const elementStyle = document.createElement('style');
         elementStyle.textContent = `
         div {
         width: 250px;
         border: 5px inset green;
         border-radius: 2px;
         padding: 5px;
         }`;
         shadow.appendChild(elementStyle);

         const cssTab = document.querySelector('#css-output');
         const editorStyle = document.createElement('style');
         editorStyle.textContent = cssTab.textContent;
         shadow.appendChild(editorStyle);
         cssTab.addEventListener('change', () => {
         editorStyle.textContent = cssTab.textContent;
         });
         }
      },
      );
   </script>
</body>
</html>
Advertisements