aboutsummaryrefslogtreecommitdiff
path: root/files/de/web/css/_colon_first-child/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/de/web/css/_colon_first-child/index.html')
-rw-r--r--files/de/web/css/_colon_first-child/index.html103
1 files changed, 103 insertions, 0 deletions
diff --git a/files/de/web/css/_colon_first-child/index.html b/files/de/web/css/_colon_first-child/index.html
new file mode 100644
index 0000000000..150c836d17
--- /dev/null
+++ b/files/de/web/css/_colon_first-child/index.html
@@ -0,0 +1,103 @@
+---
+title: ':first-child'
+slug: 'Web/CSS/:first-child'
+tags:
+ - CSS
+ - CSS Pseudoklasse
+ - Layout
+ - Referenz
+ - Web
+translation_of: 'Web/CSS/:first-child'
+---
+<div>{{CSSRef}}</div>
+
+<h2 id="Übersicht">Übersicht</h2>
+
+<p>Die <code>:first-child</code> <a href="/de/docs/Web/CSS">CSS</a> <a href="/de/docs/Web/CSS/Pseudo-classes">Pseudoklasse</a> repräsentiert jedes Element, das das erste Kindelement seines Elternelements ist.</p>
+
+<h2 id="Syntax">Syntax</h2>
+
+<pre class="syntaxbox">element:first-child { <em>Stileigenschaften</em> }
+</pre>
+
+<h2 id="Beispiele">Beispiele</h2>
+
+<h3 id="Beispiel_1">Beispiel 1</h3>
+
+<h4 id="HTML_Inhalt">HTML Inhalt</h4>
+
+<pre class="brush: html">&lt;div&gt;
+ &lt;span&gt;Dieser Text ist grün!&lt;/span&gt;
+ &lt;span&gt;Dieser Text nicht. :(&lt;/span&gt;
+&lt;/div&gt;
+</pre>
+
+<h4 id="CSS_Inhalt">CSS Inhalt</h4>
+
+<pre class="brush: css">span:first-child {
+ background-color: lime;
+}
+</pre>
+
+<p>... sieht folgendermaßen aus:</p>
+
+<p><span>{{EmbedLiveSample('Beispiel_1',300,50)}}</span></p>
+
+<h3 id="Beispiel_2_-_Verwendung_von_UL">Beispiel 2 - Verwendung von UL</h3>
+
+<h4 id="HTML_Inhalt_2">HTML Inhalt</h4>
+
+<pre class="brush: html">&lt;ul&gt;
+ &lt;li&gt;Eintrag 1&lt;/li&gt;
+ &lt;li&gt;Eintrag 2&lt;/li&gt;
+ &lt;li&gt;Eintrag 3&lt;/li&gt;
+&lt;/ul&gt;</pre>
+
+<h4 id="CSS_Inhalt_2">CSS Inhalt</h4>
+
+<pre class="brush: css">li{
+ color:red;
+}
+li:first-child{
+ color:green;
+}</pre>
+
+<p>... sieht folgendermaßen aus:</p>
+
+<p><span>{{EmbedLiveSample('Beispiel_2_-_Verwendung_von_UL',300,100)}}</span></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', '#first-child-pseudo', ':first-child')}}</td>
+ <td>{{Spec2('CSS4 Selectors')}}</td>
+ <td>Keine Änderung</td>
+ </tr>
+ <tr>
+ <td>{{SpecName('CSS3 Selectors', '#first-child-pseudo', ':first-child')}}</td>
+ <td>{{Spec2('CSS3 Selectors')}}</td>
+ <td>Ursprüngliche Definition</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_Kompatibilität">Browser Kompatibilität</h2>
+
+{{Compat("css.selectors.first-child")}}
+
+<h2 id="Siehe_auch">Siehe auch</h2>
+
+<ul>
+ <li>{{cssxref(":last-child")}}</li>
+ <li>{{cssxref(":nth-child")}}</li>
+ <li>{{cssxref(":last-of-type")}}</li>
+</ul>