CSS - :last-child
The :last-child
CSS pseudo-class represents any element that is the last child element of its parent.
Example
HTML Content
HTML
Copy Code
<ul> <li>This item is not limed.</li> <li>Also not this one.</li> <li>This item is! :)</li> </ul>
CSS Content
CSS
Copy Code
li:last-child { background-color: lime; }
Syntax
CSS
Copy Code
:last-child <a href="css/value_definition_syntax#curly_braces_(.7b_.7d)" title="Curly braces">{</a> <var>style properties</var> <a href="css/value_definition_syntax#curly_braces_(.7b_.7d)" title="Curly braces">}</a>
Description
The :last-child
CSS pseudo-class represents any element that is the last child element of its parent.
Browser Compatibility
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | 1.0 | 1.0 (1.7 or earlier) | 9.0 | 9.5 | 3.2 |
Feature | Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Basic support | 2.1 | 1.0 (1) | 9.0 | 10.0 | 3.2 |
See Also
Specifications
Specification | Status | Comment |
---|---|---|
Selectors Level 4 The definition of ':last-child' in that specification. |
Working Draft | No change |
Selectors Level 3 The definition of ':last-child' in that specification. |
Recommendation | Initial definition |
License
© 2016 Mozilla Contributors
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-us/docs/web/css/:last-child