diff options
Diffstat (limited to 'files/es/web/html/element/slot/index.html')
-rw-r--r-- | files/es/web/html/element/slot/index.html | 126 |
1 files changed, 126 insertions, 0 deletions
diff --git a/files/es/web/html/element/slot/index.html b/files/es/web/html/element/slot/index.html new file mode 100644 index 0000000000..b7a7407d83 --- /dev/null +++ b/files/es/web/html/element/slot/index.html @@ -0,0 +1,126 @@ +--- +title: <slot> +slug: Web/HTML/Elemento/slot +tags: + - Componentes Web + - Componentes Web HTML + - Elemento + - HTML + - Referencia + - slot + - sombra dom +translation_of: Web/HTML/Element/slot +--- +<p>{{HTMLRef}}</p> + +<p><span class="seoSummary"><strong>El elemento HTML <code><slot></code> </strong>—parte de la suite tecnologica <a href="/en-US/docs/Web/Web_Components">Web Components</a> — es un placeholder en un componente que tu puedes llenar con tu propio marcado, que te permite crear árboles DOM por separado y presentarlos juntos. </span></p> + +<table class="properties"> + <tbody> + <tr> + <th scope="row"><a href="/en-US/docs/Web/HTML/Content_categories">Categorias de contenido</a></th> + <td><a href="/en-US/docs/Web/HTML/Content_categories#Flow_content">Contenido de flujo</a>, <a href="/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content">contenido de fraseo</a></td> + </tr> + <tr> + <th scope="row">Contenido permitido</th> + <td><a href="/en-US/docs/HTML/Content_categories#Transparent_content_model">Transparente</a></td> + </tr> + <tr> + <th scope="row">Eventos</th> + <td>{{event("slotchange")}}</td> + </tr> + <tr> + <th scope="row">Omisión de etiqueta</th> + <td>{{no_tag_omission}}</td> + </tr> + <tr> + <th scope="row">Parentes permitidos</th> + <td>Cualquier elemento que acepte <a href="/en-US/docs/HTML/Content_categories#Phrasing_content">contenido de fraseo</a></td> + </tr> + <tr> + <th scope="row">Rol ARIA implícito</th> + <td><a href="https://www.w3.org/TR/html-aria/#dfn-no-corresponding-role">No corresponding role</a></td> + </tr> + <tr> + <th scope="row">Roles ARIA Permitidos</th> + <td>No se permite <code>role</code></td> + </tr> + <tr> + <th scope="row">Interfaz DOM</th> + <td>{{domxref("HTMLSlotElement")}}</td> + </tr> + </tbody> +</table> + +<h2 id="Atributos">Atributos</h2> + +<p>Este elemento incluye los <a href="/en-US/docs/Web/HTML/Global_attributes">atributos globales</a>.</p> + +<dl> + <dt> {{htmlattrdef("name")}}</dt> + <dd>El nombre del slot.</dd> + <dd><dfn>Un<strong> </strong></dfn><strong><dfn>slot nombrado</dfn></strong> es un elemento <code><slot></code> con el atributo <code>name</code>.</dd> +</dl> + +<h2 id="Ejemplos">Ejemplos</h2> + +<pre class="brush: html"><template id="element-details-template"> + <style> + details {font-family: "Open Sans Light",Helvetica,Arial} + .name {font-weight: bold; color: #217ac0; font-size: 120%} + h4 { margin: 10px 0 -8px 0; } + h4 span { background: #217ac0; padding: 2px 6px 2px 6px } + h4 span { border: 1px solid #cee9f9; border-radius: 4px } + h4 span { color: white } + .attributes { margin-left: 22px; font-size: 90% } + .attributes p { margin-left: 16px; font-style: italic } + </style> + <details> + <summary> + <span> + <code class="name">&lt;<slot name="element-name">NEED NAME</slot>&gt;</code> + <i class="desc"><slot name="description">NEED DESCRIPTION</slot></i> + </span> + </summary> + <div class="attributes"> + <h4><span>Attributes</span></h4> + <slot name="attributes"><p>None</p></slot> + </div> + </details> + <hr> +</template></pre> + +<div class="note"> +<p><strong>Nota</strong>: Puedes ver este ejemplo en accion en <a class="external external-icon" href="https://github.com/mdn/web-components-examples/tree/master/element-details" rel="noopener">element-details</a> (velo <a class="external external-icon" href="https://mdn.github.io/web-components-examples/element-details/" rel="noopener">running live</a>). Además, puedes encontrar una explicación en <a href="/en-US/docs/Web/Web_Components/Using_templates_and_slots">Using templates and slots</a>.</p> +</div> + +<ul> +</ul> + +<h2 id="Especificaciónes">Especificaciónes</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="col">Especificación</th> + <th scope="col">Estado</th> + <th scope="col">Comentario</th> + </tr> + <tr> + <td>{{SpecName('HTML WHATWG','scripting.html#the-slot-element','<slot>')}}</td> + <td>{{Spec2('HTML WHATWG')}}</td> + <td></td> + </tr> + <tr> + <td>{{SpecName('DOM WHATWG','#shadow-tree-slots','Slots')}}</td> + <td>{{Spec2('DOM WHATWG')}}</td> + <td></td> + </tr> + </tbody> +</table> + +<h2 id="Compatibilidad_de_navegadores">Compatibilidad de navegadores</h2> + + + +<p>{{Compat("html.elements.slot")}}</p> |