blob: 368ad9a58a8a5b6a8391fb53a30fbab87afa3257 (
plain)
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
|
---
title: ':last-child'
slug: 'Web/CSS/:last-child'
tags:
- CSS
- CSS Pseudoklasse
- Layout
- Referenz
- Web
translation_of: 'Web/CSS/:last-child'
---
<div>{{CSSRef}}</div>
<h2 id="Übersicht">Übersicht</h2>
<p>Die <code>:last-child</code> CSS <a href="/de/docs/Web/CSS/Pseudo-classes">Pseudoklasse</a> repräsentiert jedes Element, das das letzte Kindelement seines Elternelements ist.</p>
<h2 id="Syntax">Syntax</h2>
<pre class="syntaxbox">element:last-child { <em>Stileigenschaften</em> }</pre>
<h2 id="Beispiel">Beispiel</h2>
<h3 id="HTML_Inhalt">HTML Inhalt</h3>
<pre class="brush: html"><ul>
<li>Dieser Punkt ist nicht grün.</li>
<li>Auch nicht dieser.</li>
<li>Dieser Punkt ist es! :)</li>
</ul></pre>
<h3 id="CSS_Inhalt">CSS Inhalt</h3>
<pre class="brush: css">li:last-child {
background-color: lime;
}</pre>
<p>{{EmbedLiveSample('Beispiel', '100%', 100)}}</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', '#last-child', ':last-child')}}</td>
<td>{{Spec2('CSS4 Selectors')}}</td>
<td>Keine Änderung</td>
</tr>
<tr>
<td>{{SpecName('CSS3 Selectors', '#last-child', ':last-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.last-child")}}
<h2 id="Siehe_auch">Siehe auch</h2>
<ul>
<li>{{cssxref(":first-child")}}</li>
<li>{{cssxref(":nth-child")}}</li>
<li>{{cssxref(":last-of-type")}}</li>
</ul>
|