Non-standard
This feature is non-standard and is not on a standards track. Do not use it on production sites facing the Web: it will not work for every user. There may also be large incompatibilities between implementations and the behavior may change in the future.
Summary
The :-moz-last-node
CSS pseudo-class matches an element that is the last child node of some other element. It differs from :last-child
because it does not match a last child element with (non-whitespace) text after it.
Any white space at the end of an element is ignored for the determination of :-moz-last-node
.
Syntax
span:-moz-last-node { style properties }
Example
CSS
span:-moz-last-node { background-color: lime; }
HTML
<div> <span>:-moz-first-node</span> <span>:-moz-last-node</span> </div>