Pattern:
:last-of-type
Definition:
The :last-of-type pseudo-class matches the last child of its type in its parent element.
Examples:
Style the last <ul> element of its parent element
1 | ul:last-of-type { border-left : 1px solid yellow; } |
Please login to continue.