aboutsummaryrefslogtreecommitdiff
path: root/files/de/web/css/_colon_only-child
diff options
context:
space:
mode:
Diffstat (limited to 'files/de/web/css/_colon_only-child')
-rw-r--r--files/de/web/css/_colon_only-child/index.html113
1 files changed, 113 insertions, 0 deletions
diff --git a/files/de/web/css/_colon_only-child/index.html b/files/de/web/css/_colon_only-child/index.html
new file mode 100644
index 0000000000..ac7ffcc7c0
--- /dev/null
+++ b/files/de/web/css/_colon_only-child/index.html
@@ -0,0 +1,113 @@
+---
+title: ':only-child'
+slug: 'Web/CSS/:only-child'
+tags:
+ - CSS
+ - CSS Pseudo-Klasse
+ - Layout
+ - Referenz
+ - Selektoren
+ - Web
+translation_of: 'Web/CSS/:only-child'
+---
+<div>{{CSSRef}}</div>
+
+<h2 id="Übersicht">Übersicht</h2>
+
+<p>Die <span style="line-height: 1.5;">CSS </span><a href="/en-US/docs/CSS/Pseudo-classes" style="line-height: 1.5;" title="Pseudo-classes">Pseudo-Klasse</a><span style="line-height: 1.5;"> </span><code style="font-style: normal; line-height: 1.5;">:only-child</code><span style="line-height: 1.5;"> </span><span style="line-height: 1.5;"> repräsentiert ein Element, welches das einzige Kindeelement innerhalb seines Elternelementes ist. Das ist das gleiche wie </span><code style="font-style: normal; line-height: 1.5;">:first-child:last-child</code><span style="line-height: 1.5;"> oder </span><code style="font-style: normal; line-height: 1.5;">:nth-child(1):nth-last-child(1)</code><span style="line-height: 1.5;">, nur mit einer geringeren Spezifizität.</span></p>
+
+<h2 id="Syntax">Syntax</h2>
+
+<pre class="syntaxbox">parent child:only-child {
+ property: value;
+}
+</pre>
+
+<h2 id="Beispiele">Beispiele</h2>
+
+<h3 id="Einfaches_Beispiel">Einfaches Beispiel</h3>
+
+<pre class="brush: css">span:only-child {
+ color: red;
+}
+</pre>
+
+<pre class="brush: html">&lt;div&gt;
+ &lt;span&gt;Dieser span ist das einzige Kind seines Elternteils&lt;/span&gt;
+&lt;/div&gt;
+
+&lt;div&gt;
+ &lt;span&gt;<span style="font-size: 1rem;">Dieser span ist eines von zwei Kindern seines Elternteils</span><span style="font-size: 1rem;">&lt;/span&gt;</span>
+ &lt;span&gt;<span style="font-size: 1rem;">Dieser span ist eines von zwei Kindern seines Elternteils</span><span style="font-size: 1rem;">&lt;/span&gt;</span>
+&lt;/div&gt;
+</pre>
+
+<h4 id="Ergebnis">Ergebnis</h4>
+
+<p>{{EmbedLiveSample('Basic_example', '100%', 100)}}</p>
+
+<h3 id="Ein_Beispiel_für_Listen">Ein Beispiel für Listen</h3>
+
+<pre class="brush: css">li li {
+ list-style-type: disc;
+}
+li:only-child {
+ color: #6699ff;
+ font-style: italic;
+ list-style-type: square;
+}</pre>
+
+<pre class="brush: html">&lt;ol&gt;
+ &lt;li&gt;Erstens
+ &lt;ul&gt;
+ &lt;li&gt;Einziges Kind
+ &lt;/ul&gt;
+ &lt;/li&gt;
+ &lt;li&gt;Zweitens
+ &lt;ul&gt;
+ &lt;li&gt;Diese Liste hat zwei Elemente
+ &lt;li&gt;<span style="font-size: 1rem;">Diese Liste hat zwei Elemente</span>
+ &lt;/ul&gt;
+ &lt;/li&gt;
+ &lt;li&gt;Drittens
+ &lt;ul&gt;
+ &lt;li&gt;<span style="font-size: 1rem;">Diese Liste hat drei Elemente</span>
+ &lt;li&gt;<span style="font-size: 1rem;">Diese Liste hat drei Elemente</span>
+ &lt;li&gt;<span style="font-size: 1rem;">Diese Liste hat drei Elemente</span>
+ &lt;/ul&gt;
+ &lt;/li&gt;
+&lt;ol&gt;
+</pre>
+
+<h4 id="Ergebnis_2">Ergebnis</h4>
+
+<p>{{EmbedLiveSample('A_list_example', '100%', 150)}}</p>
+
+<hr>
+<h2 id="Spezifizierungen">Spezifizierungen</h2>
+
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th scope="col">Spezifizierung</th>
+ <th scope="col">Status</th>
+ <th scope="col">Kommentar</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>{{SpecName('CSS4 Selectors', '#only-child-pseudo', ':only-child')}}</td>
+ <td>{{Spec2('CSS4 Selectors')}}</td>
+ <td>Keine Änderung.</td>
+ </tr>
+ <tr>
+ <td>{{SpecName('CSS3 Selectors', '#only-child-pseudo', ':only-child')}}</td>
+ <td>{{Spec2('CSS3 Selectors')}}</td>
+ <td>Ausgangs-Definition.</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser-Kompatibilität">Browser-Kompatibilität</h2>
+
+{{Compat("css.selectors.only-child")}}