last-child property
Author admin Reading 1 min Views 687 Published by Modified by
Definition and Usage
The :last-child CSS pseudo-class represents any element that is the last child element of its parent.
Syntax
element:last-child { style properties }
Examples
2 | background-color: lime; |
2 | <li>This item is not limed.</li> |
3 | <li>This item is! :)</li> |
Result
- This item is not limed.
- This item is! 🙂
Example 2 : Using UL
Compatibility
Desktop browsers
| Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
| Basic support | 1.0 | 1.0 (1.7 or earlier) | 9.0 | 9.5 | 3.2 |
Mobile browsers
| Feature | Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
| Basic support | 2.1 | 1.0 (1) | 9.0 | 10.0 | 3.2 |