aboutsummaryrefslogtreecommitdiff
path: root/files/es/glossary/empty_element
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:41:45 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:41:45 -0500
commit1109132f09d75da9a28b649c7677bb6ce07c40c0 (patch)
tree0dd8b084480983cf9f9680e8aedb92782a921b13 /files/es/glossary/empty_element
parent4b1a9203c547c019fc5398082ae19a3f3d4c3efe (diff)
downloadtranslated-content-1109132f09d75da9a28b649c7677bb6ce07c40c0.tar.gz
translated-content-1109132f09d75da9a28b649c7677bb6ce07c40c0.tar.bz2
translated-content-1109132f09d75da9a28b649c7677bb6ce07c40c0.zip
initial commit
Diffstat (limited to 'files/es/glossary/empty_element')
-rw-r--r--files/es/glossary/empty_element/index.html30
1 files changed, 30 insertions, 0 deletions
diff --git a/files/es/glossary/empty_element/index.html b/files/es/glossary/empty_element/index.html
new file mode 100644
index 0000000000..bd5f941426
--- /dev/null
+++ b/files/es/glossary/empty_element/index.html
@@ -0,0 +1,30 @@
+---
+title: Elemento vacío
+slug: Glossary/Empty_element
+translation_of: Glossary/Empty_element
+---
+<p>Un <strong>elemento vacío </strong> es un {{Glossary("elemento")}} de HTML, SVG, o MathML que <strong>no puede</strong> tener nodos secundarios (es decir, elementos anidados o nodos de texto).</p>
+
+<p>Las especificaciones <a href="https://html.spec.whatwg.org/multipage/">HTML</a>, <a href="https://www.w3.org/TR/SVG2/">SVG</a>, y <a href="https://www.w3.org/TR/MathML3/">MathML</a> definen con precisión lo que cada elemento puede contener. Muchas combinaciones no tienen sentido semántico, por ejemplo un elemento {{HTMLElement("audio")}} anidado dentro de un elemento {{HTMLElement("hr")}}.</p>
+
+<p>En HTML, el uso de una etiqueta de cierre en un elemento vacío normalmente no es válido. Por ejemplo, <code>&lt;input type="text"&gt;&lt;/input&gt;</code> es un elemento HTML no válido.</p>
+
+<p>Los elementos vacíos en HTML son los siguientes:</p>
+
+<ul>
+ <li>{{HTMLElement("area")}}</li>
+ <li>{{HTMLElement("base")}}</li>
+ <li>{{HTMLElement("br")}}</li>
+ <li>{{HTMLElement("col")}}</li>
+ <li>{{HTMLElement("embed")}}</li>
+ <li>{{HTMLElement("hr")}}</li>
+ <li>{{HTMLElement("img")}}</li>
+ <li>{{HTMLElement("input")}}</li>
+ <li>{{HTMLElement("keygen")}}(HTML 5.2 Draft removed)</li>
+ <li>{{HTMLElement("link")}}</li>
+ <li>{{HTMLElement("meta")}}</li>
+ <li>{{HTMLElement("param")}}</li>
+ <li>{{HTMLElement("source")}}</li>
+ <li>{{HTMLElement("track")}}</li>
+ <li>{{HTMLElement("wbr")}}</li>
+</ul>