diff options
author | Florian Merz <me@fiji-flo.de> | 2021-02-11 14:46:50 +0100 |
---|---|---|
committer | Florian Merz <me@fiji-flo.de> | 2021-02-11 14:46:50 +0100 |
commit | a55b575e8089ee6cab7c5c262a7e6db55d0e34d6 (patch) | |
tree | 5032e6779a402a863654c9d65965073f09ea4182 /files/es/web/html/atributos_globales/itemref | |
parent | 8260a606c143e6b55a467edf017a56bdcd6cba7e (diff) | |
download | translated-content-a55b575e8089ee6cab7c5c262a7e6db55d0e34d6.tar.gz translated-content-a55b575e8089ee6cab7c5c262a7e6db55d0e34d6.tar.bz2 translated-content-a55b575e8089ee6cab7c5c262a7e6db55d0e34d6.zip |
unslug es: move
Diffstat (limited to 'files/es/web/html/atributos_globales/itemref')
-rw-r--r-- | files/es/web/html/atributos_globales/itemref/index.html | 106 |
1 files changed, 0 insertions, 106 deletions
diff --git a/files/es/web/html/atributos_globales/itemref/index.html b/files/es/web/html/atributos_globales/itemref/index.html deleted file mode 100644 index 9dac55140b..0000000000 --- a/files/es/web/html/atributos_globales/itemref/index.html +++ /dev/null @@ -1,106 +0,0 @@ ---- -title: itemref -slug: Web/HTML/Atributos_Globales/itemref -translation_of: Web/HTML/Global_attributes/itemref ---- -<h2 id="Resumen">Resumen</h2> - -<p>Las propiedades que no son descendientes de un elemento con el atributo <code>itemscope</code> pueden ser asociadas con el elemento usando un <strong>itemref</strong> . <strong>Itemref</strong> provee una lista de ids de los elementos (no <code>itemids</code>) con propiedades adicionales en otras partes dentro del documento .</p> - -<p>El atributo itemref puede ser solo especificado en elementos que tienen un atributo itemscope especificado .</p> - -<p class="note"><strong>Nota: </strong>el atributo itemref no es parte del modelo de micro datos . Es solamente un constructor sintáctico que ayuda a los autores en el ingreso de anotaciones a las páginas donde los datos que se van a anotar no siguen una estructura de arbol conveniente . Por ejemplo , permite a los autores marcar los datos en una tabla para que cada columna defina un item separado mientras se mantienen las propiedades en las celdas .</p> - -<div class="syntaxbox"> -<h2 class="syntaxbox" id="Ejemplo">Ejemplo</h2> - -<h3 id="HTML">HTML</h3> - -<div class="syntaxbox"> -<pre class="brush: html"><div itemscope id="amanda" itemref="a b"></div> -<p id="a">Name: <span itemprop="name">Amanda</span> </p> -<div id="b" itemprop="band" itemscope itemref="c"></div> -<div id="c"> - <p>Band: <span itemprop="name">Jazz Band</span> </p> - <p>Size: <span itemprop="size">12</span> players</p> -</div> -</pre> -</div> - -<article id="wikiArticle"> -<h3 id="Datos_estructurados">Datos estructurados </h3> - -<table class="standard-table"> - <tbody> - <tr> - <th>id's</th> - <th>itemscope</th> - <th>itemref</th> - <th> </th> - <th>(nombre de itemprop )</th> - <th>(valor de itemprop)</th> - </tr> - <tr> - <td>id=amanda</td> - <td>itemscope</td> - <td>itemref=a,b</td> - <td> </td> - <td> </td> - <td> </td> - </tr> - <tr> - <td>id=a</td> - <td> </td> - <td> </td> - <td>itemprop</td> - <td>name</td> - <td><span>Amanda</span></td> - </tr> - <tr> - <td>id=b</td> - <td>itemscope</td> - <td>itemref=c</td> - <td> </td> - <td>band</td> - <td> </td> - </tr> - <tr> - <td colspan="1" rowspan="2">id=c</td> - <td> </td> - <td> </td> - <td>itemprop</td> - <td>Band</td> - <td><span>Jazz Band</span></td> - </tr> - <tr> - <td> </td> - <td> </td> - <td>itemprop</td> - <td>Size</td> - <td><span>12</span></td> - </tr> - </tbody> -</table> - -<h3 id="Resultado">Resultado</h3> - -<p>{{ EmbedLiveSample('Example', '', '', '', 'Web/HTML/Global_attributes/itemref') }}</p> - -<h2 id="EspecificaciónEditEdit">Especificación<a class="only-icon button section-edit new" href="https://developer.mozilla.org/en-US/docs/Web/CSS/font-variant-alternates$edit#Specifications"><span>Edit</span></a><a class="only-icon button section-edit new" href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/itemid$edit#SpecificationsEdit"><span>Edit</span></a></h2> - -<table class="standard-table" style="height: 105px; width: 490px;"> - <thead> - <tr> - <th scope="col">Especificación</th> - <th scope="col">Estatus</th> - </tr> - </thead> - <tbody> - <tr> - <td style="text-align: left; vertical-align: middle;"><a class="external-icon external" href="https://html.spec.whatwg.org/multipage/microdata.html#items">itemref</a></td> - <td style="text-align: left; vertical-align: middle; white-space: nowrap;">Nota WG - No se encuentra activamente en desarrollo</td> - </tr> - </tbody> -</table> -</article> -</div> |