Onze vrijwilligers hebben dit artikel nog niet naar het Nederlands vertaald. Doe mee en help de klus te klaren!
U kunt het artikel ook in het English (US) lezen.
The :last-child
CSS pseudo-class represents the last element among a group of sibling elements.
/* Selects any <p> that is the last element among its siblings */ p:last-child { color: lime; }
Note: As originally defined, the selected element had to have a parent. Beginning with Selectors Level 4, this is no longer required.
Syntax
:last-child
Example
Basic example
HTML
<div> <p>This text isn't selected.</p> <p>This text is selected!</p> </div> <div> <p>This text isn't selected.</p> <h2>This text isn't selected: it's not a `p`.</h2> </div>
CSS
p:last-child { color: lime; background-color: black; padding: 5px; }
Result
Styling a list
HTML
<ul> <li>Item 1</li> <li>Item 2</li> <li>Item 3 <ul> <li>Item 3.1</li> <li>Item 3.2</li> <li>Item 3.3</li> </ul> </li> </ul>
CSS
ul li { color: blue; } ul li:last-child { border: 1px solid red; color: red; }
Result
Specifications
Specification | Status | Comment |
---|---|---|
Selectors Level 4 The definition of ':last-child' in that specification. |
Working Draft | Matching elements are not required to have a parent. |
Selectors Level 3 The definition of ':last-child' in that specification. |
Recommendation | Initial definition. |
Browser compatibility
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
Update compatibility data on GitHub
Desktop | Mobile | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Basic support | Chrome Full support 1 | Edge Full support Yes | Firefox Full support 1 | IE Full support 9 | Opera Full support 9.5 | Safari Full support 3.2 | WebView Android Full support Yes | Chrome Android Full support Yes | Edge Mobile Full support Yes | Firefox Android Full support 4 | Opera Android Full support 10 | Safari iOS Full support 3.2 | Samsung Internet Android Full support Yes |
Matches elements with no parent | Chrome Full support 57 | Edge ? | Firefox Full support 52 | IE ? | Opera Full support 44 | Safari ? | WebView Android Full support 57 | Chrome Android Full support 57 | Edge Mobile ? | Firefox Android Full support 52 | Opera Android Full support 44 | Safari iOS ? | Samsung Internet Android Full support 7.0 |
Legend
- Full support
- Full support
- Compatibility unknown
- Compatibility unknown
See also
Documentlabels en -medewerkers
Labels:
Aan deze pagina hebben bijgedragen:
mfuji09,
ExE-Boss,
fscholz,
mfluehr,
yisibl,
chrisdavidmills,
jpmedley,
erikadoyle,
Sebastianz,
MusikAnimal,
tregagnon,
kscarfone,
barnabywalters,
Tripad,
teoli,
Sheppy,
philtr,
ethertank,
brianloveswords,
McGurk,
miken32,
Fredchat,
Kohei,
Mgjbot,
DBaron,
Jethro
Laatst bijgewerkt door:
mfuji09,