aboutsummaryrefslogtreecommitdiff
path: root/files/de/web/css/id-selektoren/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/de/web/css/id-selektoren/index.html')
-rw-r--r--files/de/web/css/id-selektoren/index.html72
1 files changed, 72 insertions, 0 deletions
diff --git a/files/de/web/css/id-selektoren/index.html b/files/de/web/css/id-selektoren/index.html
new file mode 100644
index 0000000000..921e391d80
--- /dev/null
+++ b/files/de/web/css/id-selektoren/index.html
@@ -0,0 +1,72 @@
+---
+title: ID-Selektoren
+slug: Web/CSS/ID-Selektoren
+tags:
+ - CSS
+ - CSS Referenz
+ - Einsteiger
+ - Selektoren
+translation_of: Web/CSS/ID_selectors
+---
+<div>{{CSSRef("Selectors")}}</div>
+
+<p>In einem HTML Dokument matchen CSS ID-Selektoren ein Element basierend auf den Inhalten des {{htmlattrxref("id")}} Attributs des Elements, welches exakt dem Wert des angegebenen Selektors entsprechen muss.</p>
+
+<h2 id="Syntax">Syntax</h2>
+
+<pre class="syntaxbox">#id_value { <em>Stileigenschaften</em> }</pre>
+
+<p>Beachte, dass dies äquivalent zu folgendem {{cssxref("Attributselektoren", "Attributselektor")}} ist:</p>
+
+<pre class="syntaxbox">[id=id_value] { <em>Stileigenschaften</em> }</pre>
+
+<h2 id="Beispiel">Beispiel</h2>
+
+<pre class="brush: css">span#identified {
+ background-color: DodgerBlue;
+}
+</pre>
+
+<pre class="brush: html">&lt;span id="identified"&gt;Hier ist ein Span mit Text.&lt;/span&gt;
+&lt;span&gt;Hier ist ein weiterer.&lt;/span&gt;
+</pre>
+
+<p>{{EmbedLiveSample("Beispiel", 200, 50)}}</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("CSS4 Selectors", "#id-selectors", "ID selectors")}}</td>
+ <td>{{Spec2("CSS4 Selectors")}}</td>
+ <td> </td>
+ </tr>
+ <tr>
+ <td>{{SpecName("CSS3 Selectors", "#id-selectors", "ID selectors")}}</td>
+ <td>{{Spec2("CSS3 Selectors")}}</td>
+ <td> </td>
+ </tr>
+ <tr>
+ <td>{{SpecName("CSS2.1", "selector.html#id-selectors", "ID selectors")}}</td>
+ <td>{{Spec2("CSS2.1")}}</td>
+ <td> </td>
+ </tr>
+ <tr>
+ <td>{{SpecName("CSS1", "#id-as-selector", "ID selectors")}}</td>
+ <td>{{Spec2("CSS1")}}</td>
+ <td>Ursprüngliche Definition</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_Kompatibilität">Browser Kompatibilität</h2>
+
+{{Compat("css.selectors.id")}}