1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
---
title: <div>
slug: Web/HTML/Element/div
tags:
- Element
- HTML
- HTML Gruppierungsinhalt
- 'HTML:Flow content'
- Referenz
- Web
translation_of: Web/HTML/Element/div
---
<div>{{HTMLRef}}</div>
<h2 id="Übersicht">Übersicht</h2>
<p>Das <a href="/de/docs/Web/HTML">HTML</a>-Element<strong> <code><div></code></strong> (Englisch: <em>HTML Document Division Element</em>) ist ein allgemeiner Container für fließenden Inhalt, dem keine semantische Bedeutung zugeordnet wird.</p>
<p>Der wesentliche Unterschied zwischen <code><div></code> und anderen Block-Elementen wie beispielsweise {{HTMLElement("article")}} oder {{HTMLElement("p")}} ist die semantische Bedeutung bzw. das Fehlen dieser. Während <code><article></code> einen Artikel, einen eigenständigen Bereich eines Dokuments darstellt und <code><p></code> einen Textabsatz, gibt <code><div></code> seinem Inhalt keine Bedeutung.<br>
<code><div></code> sollte deshalb nur genutzt werden, falls kein anderes Block-Element eine zutreffendere Aussage macht.</p>
<p>Der Einsatzbereich von <code><div></code> ist die Gruppierung von Elementen alleine zum Zweck der Gestaltung oder des programmatischen Zugriffs (mit Hilfe des <strong>class</strong>- oder <strong>id</strong>-Attributs), oder weil sie die gleichen Attribut-Werte besitzen, wie zum Beispiel das Attribut <strong>lang</strong>.</p>
<table class="properties">
<tbody>
<tr>
<th scope="row"><a href="/en-US/docs/Web/HTML/Content_categories" title="HTML/Content_categories">Inhaltskategorien</a></th>
<td><a href="/en-US/docs/Web/HTML/Content_categories#Flow_content">Fließender Inhalt</a>, greifbarer Inhalt.</td>
</tr>
<tr>
<th scope="row">Erlaubter Inhalt</th>
<td><a href="/en-US/docs/Web/HTML/Content_categories#Flow_content">Fließender Inhalt</a>.</td>
</tr>
<tr>
<th scope="row">Tag Auslassung</th>
<td>{{no_tag_omission}}</td>
</tr>
<tr>
<th scope="row">Erlaubte Elternelemente</th>
<td>Jedes Element, dass <a href="/en-US/docs/Web/HTML/Content_categories#Flow_content">fließenden Inhalt</a> erlaubt.</td>
</tr>
<tr>
<th scope="row">DOM-Schnittstelle</th>
<td>{{domxref("HTMLDivElement")}}</td>
</tr>
</tbody>
</table>
<h2 id="Attribute">Attribute</h2>
<p>Dieses Element unterstützt nur die <a href="/en-US/docs/Web/HTML/Global_attributes">globalen Attribute</a>, insbesondere {{htmlattrxref("class")}} und {{htmlattrxref("id")}}.</p>
<p>{{HTMLVersionInline(5)}} {{obsolete_inline}} Das <strong>align</strong>-Attribut ist für <code><div></code>-Elemente nicht mehr zulässig.</p>
<h2 id="Beispiel">Beispiel</h2>
<h3 id="HTML">HTML</h3>
<pre class="brush: html"><div class="beispiel">
<p>Dies ist ein sehr interessanter Hinweis
in einem hübsch dekorierten Kasten.
</p>
</div></pre>
<h3 id="CSS">CSS</h3>
<pre class="brush: css">.beispiel {
width: 15em;
border: 1px solid #333;
box-shadow: 8px 8px 5px #444;
padding: 8px 12px;
background-image: linear-gradient(180deg, #fff, #ddd 40%, #ccc);
}</pre>
<h3 id="Ergebnis">Ergebnis</h3>
<p>{{EmbedLiveSample("Beispiel", 650, 60)}}</p>
<h2 id="Spezifikationen">Spezifikationen</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Spezifikation</th>
<th scope="col">Status</th>
<th scope="col">Kommentar</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('HTML WHATWG', 'grouping-content.html#the-div-element', '<div>')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td></td>
</tr>
<tr>
<td>{{SpecName('HTML5 W3C', 'grouping-content.html#the-div-element', '<div>')}}</td>
<td>{{Spec2('HTML5 W3C')}}</td>
<td></td>
</tr>
<tr>
<td>{{SpecName('HTML4.01', 'struct/global.html#h-7.5.4', '<div>')}}</td>
<td>{{Spec2('HTML4.01')}}</td>
<td></td>
</tr>
</tbody>
</table>
<h2 id="Browserkompatibilität">Browserkompatibilität</h2>
<p>{{CompatibilityTable}}</p>
<h2 id="Siehe_auch">Siehe auch</h2>
<ul>
<li>Semantische Sektionselemente: {{HTMLElement("section")}}, {{HTMLElement("article")}}, {{HTMLElement("nav")}}, {{HTMLElement("header")}}, {{HTMLElement("footer")}}</li>
<li>{{HTMLElement("span")}} Element für die Darstellung von Formulierungsinhalten</li>
</ul>
|