diff options
Diffstat (limited to 'files/es/web/html/elemento/em/index.html')
-rw-r--r-- | files/es/web/html/elemento/em/index.html | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/files/es/web/html/elemento/em/index.html b/files/es/web/html/elemento/em/index.html new file mode 100644 index 0000000000..d24fa05f81 --- /dev/null +++ b/files/es/web/html/elemento/em/index.html @@ -0,0 +1,60 @@ +--- +title: em +slug: Web/HTML/Elemento/em +tags: + - HTML + - 'HTML:Elemento' + - Todas_las_Categorías +translation_of: Web/HTML/Element/em +--- +<div>{{HTMLRef}}</div> + +<p>El <strong>elemento HTML <code><em></code></strong> es el apropiado para marcar con énfasis las partes importantes de un texto. El elemento <code><em></code> puede ser anidado, con cada nivel de anidamiento indicando un mayor grado de énfasis.</p> + +<div>{{EmbedInteractiveExample("pages/tabbed/em.html", "tabbed-shorter")}}</div> + + + +<table class="properties"> + <tbody> + <tr> + <th scope="row"><a href="/es/docs/Web/Guide/HTML/categorias_de_contenido">Categorías de contenido</a></th> + <td><a href="/es/docs/Web/Guide/HTML/categorias_de_contenido#Contenido_dinámico">Contenido dinámico</a>, <a href="/es/docs/Web/Guide/HTML/categorias_de_contenido#Contenido_textual_o_estático">contenido textual o estático</a>, contenido palpable</td> + </tr> + <tr> + <th scope="row">Contenido permitido</th> + <td><a href="/es/docs/Web/Guide/HTML/categorias_de_contenido#Contenido_textual_o_estático">Contenido textual o estático</a>.</td> + </tr> + <tr> + <th scope="row">Tag omission</th> + <td>{{no_tag_omission}}</td> + </tr> + <tr> + <th scope="row">Permitted parents</th> + <td>Any element that accepts <a href="/en-US/docs/Web/HTML/Content_categories#Phrasing_content">phrasing content</a>.</td> + </tr> + <tr> + <th scope="row">Permitted ARIA roles</th> + <td>Any</td> + </tr> + <tr> + <th scope="row">DOM interface</th> + <td>{{domxref("HTMLElement")}} Up to Gecko 1.9.2 (Firefox 4) inclusive, Firefox implements the {{domxref("HTMLSpanElement")}} interface for this element.</td> + </tr> + </tbody> +</table> + +<h3 id="Atributos" name="Atributos">Atributos</h3> + +<p>Este elemento solo incluye los <a href="/es/docs/Web/HTML/Atributos_Globales">atributos globales</a>.</p> + +<h3 id="Ejemplos" name="Ejemplos">Ejemplos</h3> + +<pre class="eval"> <p> + <em>El dinero</em> es importante pero <strong>la salud</strong> lo es más. + </p> +</pre> + +<h3 id="Comentarios" name="Comentarios">Comentarios</h3> + +<p><a href="es/HTML/Elemento/em">em</a> tiene un hermano mayor: <a href="es/HTML/Elemento/strong">strong</a>. <a href="es/HTML/Elemento/em">em</a> sirve para dar énfasis y <a href="es/HTML/Elemento/strong">strong</a> para dar mucho énfasis</p> |