--- title: ':-moz-last-node' slug: 'Web/CSS/:-moz-last-node' tags: - CSS - CSS Reference - Non-standard translation_of: 'Web/CSS/:-moz-last-node' ---
:-moz-last-node
CSS 擬似クラスは、ある要素の最後の子ノードの要素に一致します。最後の子要素の後に (スペースではない) テキストがあると一致しないため、{{ Cssxref(":last-child") }} とは動作が異なります。
要素の末尾にある空白文字は :-moz-last-node
の決定において無視されます。
span:-moz-last-node { style プロパティ }
span:-moz-last-node { background-color: lime; }
<div> <span>:-moz-first-node</span> <span>:-moz-last-node</span> </div>
{{EmbedLiveSample("Example", "220", "20")}}