Home » HTML » Html miscellaneous » Question
  1. Which element is a placeholder inside web component?
    1. <slot>
    2. <element>
    3. <content>
    4. <shadow>
    5. None of these
Correct Option: A

<shadow> is obsolete part of web component used to shadow DOM. The obsolete part of web components is <content>. <slot> element in HTML is a part of Web Components technology suite. It is a placeholder inside web component that you can fill with own markup that lets you create separate DOM trees and present them together. <element> is one of part of web components, used to custom DOM elements.



Your comments will be displayed only after manual approval.