aboutsummaryrefslogtreecommitdiff
path: root/files/nl/glossary/empty_element/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/nl/glossary/empty_element/index.html')
-rw-r--r--files/nl/glossary/empty_element/index.html35
1 files changed, 0 insertions, 35 deletions
diff --git a/files/nl/glossary/empty_element/index.html b/files/nl/glossary/empty_element/index.html
deleted file mode 100644
index 59c33c6316..0000000000
--- a/files/nl/glossary/empty_element/index.html
+++ /dev/null
@@ -1,35 +0,0 @@
----
-title: Leeg element
-slug: Glossary/Empty_element
-tags:
- - CodingScripting
- - Gemiddeld niveau
- - Woordenboek
-translation_of: Glossary/Empty_element
-original_slug: Glossary/Leeg_element
----
-<p>Een <strong>leeg element</strong> is een {{Glossary("element")}} van HTML, SVG of MathML dat <strong>geen</strong> childnode kan bevatten (geneste elementen of tekstnodes).</p>
-
-<p>De specificaties voor <a href="https://html.spec.whatwg.org/multipage/">HTML</a>, <a href="https://www.w3.org/TR/SVG2/">SVG</a> en <a href="https://www.w3.org/TR/MathML3/">MathML</a> definiëren heel nauwkeurig wat elk element kan bevatten. Vele combinaties hebben geen semantische betekenis, bijvoorbeeld een {{HTMLElement("audio")}}-element dat is genest in een {{HTMLElement("hr")}}-element.</p>
-
-<p>In HTML is het gebruik van een sluitlabel op een leeg element over het algemeen ongeldig. <code>&lt;input type="text"&gt;&lt;/input&gt;</code> is bijvoorbeeld ongeldige HTML.</p>
-
-<p>In HTML bestaan de volgende lege elementen:</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")}}(Geschrapt in HTML 5.2)</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>